I need to set a variable on the second form that will be present on both form and can serve as an identifier ?!?! http://www.prochant.com/test/le_formulaire.htm
Presently the email from the first form is echo on the second form. When that second form is posted i need that $email still processing through the mail output ?!?!?!?
It's kind of urgent so any solution is welcome
Thanks
easiest wa is to include it in a hidden field element
<?
$email=$_POST['email']; //from the first form
then
echo "<input type=\"hidden\" name=\"email\" value=\"$email\">";
hth
another approach is to declare session variables before you go into form 1. The session variables can be checked and then unset after they are used.