RE: [PHP] cookie not setting in IE

2003-08-14 Thread Chris W. Parker
Michael A Smith mailto:[EMAIL PROTECTED] on Wednesday, August 13, 2003 1:36 PM said: In the status bar, at the bottom, are you getting a little red eye or something of the sort? If you are IE is blocking the cookie for you. Gosh don't I sound like a moron (I'm not I promise!!!). Sure

[PHP] cookie not setting in IE

2003-08-14 Thread Chris W. Parker
Hello, I'm just testing out some cookie stuff right now and I've created a VERY basic cookie setting and reading page. It works in Mozilla Firebird and it even works in a friends IE. For some reason my computer won't accept the cookie. Anyone have any ideas? Chris. p.s. Both computers are

Re: [PHP] cookie not setting in IE

2003-08-14 Thread Chris Shiflett
--- Chris W. Parker [EMAIL PROTECTED] wrote: It works in Mozilla Firebird and it even works in a friends IE. For some reason my computer won't accept the cookie. Can you show us the HTTP transaction using ethereal or something? Chris = Become a better Web developer with the HTTP

RE: [PHP] cookie not setting in IE

2003-08-14 Thread Chris W. Parker
Chris Shiflett mailto:[EMAIL PROTECTED] on Wednesday, August 13, 2003 1:33 PM said: It works in Mozilla Firebird and it even works in a friends IE. For some reason my computer won't accept the cookie. Can you show us the HTTP transaction using ethereal or something? Unfortunately, no.

[PHP] Cookie Not Setting..

2001-07-11 Thread Jeff Lewis
Ok, I've used cookies before and have never had a problem with them but for some reason this doesn't seem to be setting! Here is the start of the file called after logging in to my site. In another file I have echo $wwblCookie and have also tried echo $HTTP_COOKIE_VARS[wwblCookie] but no

Re: [PHP] Cookie Not Setting..

2001-07-11 Thread Jeff Lewis
, 2001 9:30 AM Subject: Re: [PHP] Cookie Not Setting.. Try this: $cookie_name= wwblCookie; $value = PLEASE; $exp= time() + (86400 * 365); $server = www.domain.com; // Or IP-address will also do fine // the domain must

Re: [PHP] Cookie Not Setting..

2001-07-11 Thread Magnus Hammar
9:30 AM Subject: Re: [PHP] Cookie Not Setting.. Try this: $cookie_name= wwblCookie; $value = PLEASE; $exp= time() + (86400 * 365); $server = www.domain.com; // Or IP-address will also do fine // the domain must