Hi there,
I am a bit confused:
- I heard that sessions worked with cookies, and that if the user's browser didn't accept them,
then sessions would not work
- Same thing for the setcookie function
BUT, I am currently developing offline and I made this small test:
1- Open a session with some session_register vars, and display some of these vars' values on my screen
2- Send a cookie to my own browser and display its value on my screen
3- Go to my Internet options and delete the cookies
Result: the cookie's gone but the session is still there and the session_registered vars are still there as well.
Does it mean that no browser can block a PHP session?
Bruno