I have two linked PHP4 scripts.
php1.php
<?php
session_name("SESION1");
session_register("count");
$count++;
?>
<? echo $count; ?>
<A HREF="php1.php">php1.php</A>
php2.php
<?php
session_name("SESION2");
session_register("count");
$count++;
?>
<? echo $count; ?>
<A HREF="php2.php">php2.php</A>
My problem is how can I recover a SESSION with name in a php, without passing it in the URL?