Why my session variable is not passing between these 2 pages?
<?php
session_start();
$_SESSION["test"]= "12345";
echo "<a href='8.php'>move to another page</a>";
?>
second webpage 2.php
<?php
echo $_SESSION["test"];
?>
The session variable is empy in the second page
session_start()in second page