PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
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().
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)