RE: [PHP] Need help with a PHP script

2002-03-03 Thread Martin Towell
instead of $HTTP_POST_VARS, try $_POST -Original Message- From: PHP [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 12:10 PM To: [EMAIL PROTECTED] Subject: [PHP] Need help with a PHP script http://infinitep.t35.com/countmein/control.phtml\";>"; echo ""; echo ""; echo "Use

RE: [PHP] Need help with a PHP script

2002-03-03 Thread Douglas Maclaine-cross
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".$use

RE: [PHP] Need help with a PHP script

2002-03-03 Thread Douglas Maclaine-cross
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