Hello,
I have one doubt about sessions use: onde it have started one session, then registered some variables, how can i know if at another page, the session is the same?
At any php document will be necessary use the 'sesssion_start()'?
How can i handle the session variables i have defined at the first page, just like the lines above, to all sub-pages after?
<?php
session_start();
$user = "someuser";
$pass = "test";
session_register('user');
session_register('pass');
header("Location: session.php");
?>