Re: [PHP] cookie crumbles

2003-09-03 Thread John Taylor-Johnston
As it turned out, all I had to do was get rid of the period "." and things began to work better. I also had to remember to close my browser and empty the cookie jar. Thanks, J Jaap Van Ganswijk wrote: > At 2003-09-01 00:49 -0400, John Taylor-Johnston wrote: > >I create this cookie, using Javascr

Re: [PHP] cookie crumbles

2003-09-01 Thread John W. Holmes
John Taylor-Johnston wrote: $StudentId = "weather.htm9995"; if (!isset($_COOKIE["weather.htm$StudentId"])) if(!isset($_COOKIE[$StudentID])) { echo "Cookie not found, not reading weather.htm$StudentId"; echo "\$_COOKIE[\"weather.htm$StudentId\"]". $_COOKIE["weather.htm$StudentId"]."-"; }else{

Re: [PHP] cookie crumbles

2003-09-01 Thread Jaap van Ganswijk
At 2003-09-01 00:49 -0400, John Taylor-Johnston wrote: >I create this cookie, using Javascript:: > >testals.flsh.usherb.ca FALSE / FALSE 1062433227 weather.htm9995 1 > >If the browser is reloaded, I want php to read the cookie and do my else statement. >Even after a browser shut-down and restar