I can't believe I just sent this. For those who care it's the other way
around.

-----Original Message-----
From: Douglas Maclaine-cross 
Sent: Monday, March 04, 2002 14:08
To: 'PHP'; [EMAIL PROTECTED]
Subject: RE: [PHP] Need help with a PHP script


echo "T".$username.$password;

is PHP 2 and earlier proper syntax for PHP 3+ is

echo "T"+$username+$password;

or

echo "T$username$password";

Doug

Reply via email to