Hello,
I have the following problem: i have a html mailform that submits to confirm.php, where the fields are validated. If that is all correct it ends with a form where the user must agree to the information submitted. Within that form i have defined hidden fields
that contain the information (example: <input type=hidden name=message value=$message> . The agree button submits the hidden fields to sendmail.php. The e-mail is sent(all the fields/strings with single words, such as name, e-mail address are OK), but the message text that contains sentences, displays only the first word entered by the user (example: user entry for the message= thanks you for your help, then the output in the e-mail contains only: thanks). Question: how will i be able to transfer the complete message text into the e-mail using these 2 scripts (confirm.php, sendmail.php) ? By the way: it works great without the confirm.php in between !!
Thanks in advance.