Home Tutorial Php Examples Session regenerated id

 
 

Session regenerated id
Posted on: July 31, 2009 at 12:00 AM
This is the example of session regenerated id in PHP.

Session regenerated ID

session_regenerate_id() works to regenerate the session by replacing oldsessionid. 

For this, first start the session, 

set the sessionid equal to oldsessionid and print oldsessionid. 

Now use the session_regenrateid and set this id to new sessionid.

<?php
session_start();
print_r($_SESSION);
echo "<br />";
$oldsessionid = session_id();
echo "Old Session:". $oldsessionid."<br />";
session_regenerate_id();

$newsessionid = session_id();
echo "New Session:". $newsessionid."<br />";

?>

Related Tags for Session regenerated id: