Just curious if i have this process correct to avoid session id fixation
in my login file once the auth is done and everything is fine.
then i set the session values and also set this
PHP Code:
$_SESSION['oldid'] = 1;
then it redirects and opens up the home page
and at the very top of that home page i have this so that it only executes this one time per login.
PHP Code:
//only do this one time per login
if(isset($_SESSION['oldid']))
{
echo "hellow old is set";
session_regenerate_id(true);
$_SESSION['oldid'] = '';
}
session_start();
Does that look about right?