I have the following script:
<?PHP
session_start() ;
echo session_id();
?>
But it gives a different session_ID() everytime the page is reloaded.
Is there any way to keep the same session_ID() until the browser window
is closed?
<?PHP
session_start() ;
echo session_id();
?>
But it gives a different session_ID() everytime the page is reloaded.
Is there any way to keep the same session_ID() until the browser window
is closed?
Comment