When you call session_start() the second time it will reopen the current session if it exists or start a new one if it doesn't.
i.e. this should display the contents of the variable $name
<?php
session_start();
session_register("name");
$name="me";
echo "<A href=\"nextfile.php\">click here</A>";
?>
nextfile.php is
<?php
session_start()
echo $_SESSION['name'];
// or use $name depending on your version of php
?>
Mark.