Hiya,
If I remember correctly, you much send both \r and \n to terminate a line
on an e-mail, regardless of the platform. This should include the header
aswell.
At 12:00 14/04/2002 +0100, DL Neil wrote:
>Jeff,
>
> > I have a form where someone enters the body of an email message
> > into a pa
Hiya,
Personally, I use the following bit of code. All it does is take a 14 digit
timestamp and convert it into a unix timestamp:
function date($date) {
//Extract the parts from the date
$year = substr($date, 0, 4);
$month = substr($date, 4, 2);
$day = substr($date, 6, 2);