Page 1 of 1

session_start()

Posted: Mon Oct 10, 2005 4:32 am
by sebs
Is someway session_start() conflicting with $_GET and $_POST,can I use $_REQUEST instaid of $_GET to get the variables?
I have a file that uses $_GET,$_POST and I am trying to use sessions but it doesn't work corectly after I use session_start().

Posted: Mon Oct 10, 2005 4:55 am
by Jenk
session_start() does not interfere with $_GET, $_POST or $_COOKIE with the only exception that it uses them to store the session ID. (default key is PHPSESS)

Posted: Mon Oct 10, 2005 2:38 pm
by feyd
ahem, PHPSESSID ;)