PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
I am new to PhP and having some probs with my forms process.
I have
A. Form 1 - An inventory type form which calcuates totals
B. Form 2 - A pers info form where pers info is inputted (name, email, date, etc.) and the form 1 totals are posted.
C. Email script - Where all the values are passed for emailing to a pre-assigned email address.
My prob is I can get the values from Form 1 to Form 2, but I cannot figure out how to get the form 1 values(totals) to the Email script?
Yeah sessions, or cookies, but sessions would be better, you could also just use the $_GET['variable'] instead of $_POST['variable']. You would just have to change your form from post to get