Im trying to pass on a sessionid which i have created but it doesnt seem to pass. This is the setup:
page1.php
<?
$time = time();
$date = $today = date("Ymd");
$id = $time + $date;
session_id($id);
session_start();
print session_id();
echo "time = $time";
echo "date = $date";
?>
This works fine giving me the id.
Page2.php
<?
session_start();
print session_id();
echo "time = $time";
echo "date = $date";
?>
This does not display the information from the first page. Any ideas anyone?