Hi
No id is not the same thing but you can leave the id there it’s okay. The error you received is a parse error (one of the most irritating errors one can receive), post page 2’s code (http://www.omcal.com/test_form2.html) I will have a look at it somewhere you are using a “ at a wrong place or maybe didn’t close the “ somewhere it could be a few thing but I’ll have a look. Usually but unfortunately not always if the error says on lline 171 the error wil be on or before line 171 most of the time
<input name="servicing_co_req" type="text" id="servicing_co_req" size="35" value=”<?php echo“$_POST[servicing_co_req]” ?>”>
Also try using single quotes at the echo if it’s giving you the same error, like this.
<input name="servicing_co_req" type="text" id="servicing_co_req" size="35" value=”<?php echo’$_POST[servicing_co_req]’ ?>”>
Make the changes and see if it’s still give you the same error, if so just post the code with the error message.
The e-mail you sent me you typed this:
<input type="text" name="textfield" value=?<?php echo ?$_POST['textfield']? ?>?>
If this was in you code the problem is the ??>?> at the end there. Was this jus a typo in your e-mail?
I have also noticed in the fist e-mail you sent me there was an attached doc (dealer w.php) and there you use the <<<EOF EOF to echo your HTML function if that is also the case on test_form2.html the problem can be that firstly if you are using php on this page you must rename the page to test_form2.php to let the server know that you are using php on your page. Then secondly you don’t have to echo then u just use:
<input name="servicing_co_req" type="text" id="servicing_co_req" size="35" value=”$_POST[servicing_co_req]”>