Re: [PHP] ID variable alsways set

2002-03-04 Thread Erik Price
On Monday, March 4, 2002, at 02:25 AM, Rasmus Lerdorf wrote: > Do a phpinfo() and check to see if you perhaps have a cookie with the > name "id" set with the value "1". If your look at variables_order in > your > php.ini file, you will see that cookie data will override get-method > data. >

Re: [PHP] ID variable alsways set

2002-03-03 Thread Rasmus Lerdorf
Do a phpinfo() and check to see if you perhaps have a cookie with the name "id" set with the value "1". If your look at variables_order in your php.ini file, you will see that cookie data will override get-method data. To force a read from the GET data, use $_GET['id'] instead of $id. -Rasmus