[PHP-DB] Major Cookie Problem

2010-05-13 Thread Barry Zimmerman
Safari browser will not accept my cookie it is ignoring it? have I done something wrong with how the cookie is presented for safari??? The cookie I try to set: setcookie('peg', 'YES', 'time()+190', '', 0); Also all browsers are starting my phpsession off when its not even declared until after the p

Re: [PHP-DB] Major Cookie Problem

2010-05-13 Thread Barry Zimmerman
Its only happening in safari with the cookie not being set. It must be my cookie string that is the problem. I just cannot find anything on the issue. My other major issue is the fact that the session is being set when the post has not even been declared, its just setting the session?

Re: [PHP-DB] Major Cookie Problem

2010-05-13 Thread Chaitanya Yanamadala
On 5/13/10, Barry Zimmerman wrote: > Its only happening in safari with the cookie not being set. It must be my > cookie string that is the problem. I just cannot find anything on the issue. > > My other major issue is the fact that the session is being set when the post > has not even been declare

Re: [PHP-DB] Major Cookie Problem

2010-05-13 Thread Richard Quadling
On 13 May 2010 12:32, Barry Zimmerman wrote: > setcookie('peg', 'YES', 'time()+190', '', 0); Can you try removing the quotes from around the expire parameter. setcookie('peg', 'YES', time()+190, '', 0); Richard -- - Richard Quadling "Standing on the shoulders of some very clever giants!" E