View Single Post
  #9 (permalink)  
Old 07-05-06, 04:28 PM
unlisted80's Avatar
unlisted80 unlisted80 is offline
Newbie Coder
 
Join Date: Feb 2005
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by nico_swd
There are two erros. One is the one that Mab mentioned.

Change this
PHP Code:

 $headers "From: {$_POST['sendername']} <{$from_address']}>\r\nContent-type: text/html"; 

To this

PHP Code:

 $headers "From: {$_POST['sendername']} <{$from_address}>\r\nContent-type: text/html"

And then do you have an unescaped quote in line 52.

Change
PHP Code:

$error .="<div class="error\">$RegistrationError[2]</div>"
To
PHP Code:

$error .="<div class=\"error\">$RegistrationError[2]</div>"

This work fine...

Many Thanks for all your help
Reply With Quote