[PHP] Re: cookie ( still not working )

2002-07-11 Thread Richard Lynch
>i simpley put an cookie with : > >setcookie("gfo_cms" ,$sessid , ''); That's wrong. You should be passing a TIME in for the third argument, or nothing at all. Also, due to an IE bug, if you *DO* pass in a TIME, you *MUST* also pass in a non-empty path. '/' will be fine. So, if you want a '

[PHP] Re: cookie ( still not working )

2002-07-10 Thread vins
My experience with cookies is really unhappy. I've once developed a website that needed to store information. I though hey cookies are the quicker option to hell with sessions. Now today after all of my problems with the cookies environment i've turned back to sessions. Sessions can store

[PHP] Re: cookie ( still not working )

2002-07-10 Thread richard . mail
Johan Holst Nielsen writes: > >> my cookie problem is still not solved :( >> my browser settings are correct, and the script has worked. >> but sins i now installed php 4.2.1 with apache 1.3.24 it doesn't work :( >> does any one have an solution ?? >> thnx in advance, > > > Sure about your r

[PHP] Re: cookie ( still not working )

2002-07-10 Thread Johan Holst Nielsen
> my cookie problem is still not solved :( > my browser settings are correct, and the script has worked. > but sins i now installed php 4.2.1 with apache 1.3.24 it doesn't work :( > does any one have an solution ?? > thnx in advance, Sure about your register_globals = off? please show us the so