RE: [PHP] Re: PHP error on form

2005-07-28 Thread Jay Blanchard
[snip] I made the suggestions mentioned by Mike and don't get any error, but the form doesn't work properly. Check it out at http://www.inspired-evolution.com/Contact_Form_test.php [/snip] You never sent the first 60 lines of code or so, and your origianl post doesn't have 58 lines in it. Please s

[PHP] Re: PHP error on form

2005-07-28 Thread Bruce Gilbert
I made the suggestions mentioned by Mike and don't get any error, but the form doesn't work properly. Check it out at http://www.inspired-evolution.com/Contact_Form_test.php the PHP form CODE I now have is: Your Name: Your E-mail Address: Message: "; if ($_POST['op'] !="ds") { // they need

[PHP] Re: PHP error on form

2005-07-28 Thread Sonia
Hi First some of your $_POST array variables are written like $POST['var'], you need to change them to $_POST['var']. Then because you are not using the dot operator in your string variables and you are using a associative array you must enclose the array variable in {$arr['var']} tags! // enclos