This is page 1:
Code: Select all
<?php
session_start();
$_SESSION['name']='dexter';
echo $_SESSION['name'];
?>
<a href="page.php">Go to this page</a>
Code: Select all
<?php
session_start();
echo $_SESSION['name'];
?>
I have tried everything.. I have been through documentation. I have just finished comparing my php.ini sessions part with the online defaults.. I have been through documentation. I have even changed my php version because I though the prob might be a bug or something in my version... Nothing Is Working... Kindly help me out here...