http://www.cteksolutions.net/contact.php
When I submit the Feedback Form I get the following error http://pastie.org/3029857
Also my email is on another server.
Here is the response.php content http://pastie.org/3029866
Thanks
The variables $lname and $company have never been defined. To get $lname you would have to split up your $fname variable into multiple parts. The company form field is then stored in $address, so you could use this variable instead.
Also, the first time you use $to, it has not been defined. Change:
[php]$to .= ‘[email protected]’ . ', '; // add additional mail receipient here. Uncomment to activate
[/php]
to:
[php]$to = ‘[email protected]’ . ', '; // add additional mail receipient here. Uncomment to activate
[/php]
The final error is to do with your server’s configuration.
I have control of the server what should I be looking for?
Thanks