Re: session_start() may take 5 seconds :(

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



session1.php:
<?php
session_start();
$_SESSION['s1']='sth';
header("location: session2.php?".SID);
?>
session2.php:
<?php
session_start();
if(isset($_SESSION['s1']))
echo $_SESSION['s1'];
else
die("No session!");
?>

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux