Re: [PHP-DB] weird php error

2003-08-29 Thread Tiberiu Ardeleanu
Try: if ($_GET['login'] == 'forgot') - Original Message - From: OpenSource [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 29, 2003 7:38 AM Subject: [PHP-DB] weird php error Hi guys, This is weird to me.. I got this script

RE: [PHP-DB] weird php error

2003-08-29 Thread Ford, Mike [LSS]
On 29 August 2003 06:39, OpenSource wrote: Hi guys, This is weird to me.. I got this script --- ?php if ($_GET[login] == 'forgot') { echo Sorry I forgot my password; } else { echo you are

Re: [PHP-DB] weird php error

2003-08-29 Thread Kieu D. Trang
try if (isset($_GET['login']) AND $_GET['login'] == 'forgot') KD On Fri, 29 Aug 2003, Tiberiu Ardeleanu wrote: Try: if ($_GET['login'] == 'forgot') - Original Message - From: OpenSource [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 29, 2003 7:38 AM Subject: