I ve problem with sessions.
Index.php
<?php
session_start();
$abc=rand(10000,99999);
$_SESSION["abc"]=$abc;
echo $_SESSION["abc"];
?>
Page.php
<?php
session_start();
echo $_SESSION["abc"];
?>
I always ve different number in page.php . Whats the problem. Please help me
Php version: 8.2