I know that we can send a variable to the next page with session, however I want to know if we can send it more than 2 pages forward.
session_start();
$_SESSION['varname'] = $username_sim ;
In a code like this one with the varname we can take the data in the next page as this but can we do it in a possible third page with out using session in the second page??
session_start();
$var_value = $_SESSION['varname'];