This is the only way I could get variables from a form to pass down through about 7 pages:
<input type="hidden" name="company" value="<?php echo $_POST["company"] ?>">
<input type="hidden" name="email" value="<?php echo $_POST["email"] ?>">
I have 39 in total. How do I convert these into $variables so I can include them in the email?
I know this is probably a stupid question but I've just started working with php. I know how to submit the form and the email is going through but am stuck with this part of it.
It's late and I'm exhausted so if this doesn't make sense please bare with me.
Thanks for your help.
Rhiannon
<input type="hidden" name="company" value="<?php echo $_POST["company"] ?>">
<input type="hidden" name="email" value="<?php echo $_POST["email"] ?>">
I have 39 in total. How do I convert these into $variables so I can include them in the email?
I know this is probably a stupid question but I've just started working with php. I know how to submit the form and the email is going through but am stuck with this part of it.
It's late and I'm exhausted so if this doesn't make sense please bare with me.
Thanks for your help.
Rhiannon