Posted by Toby A Inkster on 02/09/07 10:44
geek7 wrote:
> $headers .= "Content-Type: text/html;\r\n";
> $headers .= "charset=\"iso-8859-1\"\r\n";
This is broken.
Should be either:
$headers .= "Content-Type: text/html; ";
$headers .= "charset=\"iso-8859-1\"\r\n";
or:
$headers .= "Content-Type: text/html;\r\n";
$headers .= "\tcharset=\"iso-8859-1\"\r\n";
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
Geek of ~ HTML/CSS/Javascript/SQL/Perl/PHP/Python*/Apache/Linux
* = I'm getting there!
Navigation:
[Reply to this message]
|