Hi I've got problem with reading session vars that were passed into another PHP script. That's how my files look like:
[start.php]
<?php
session_start();
$var="data123";
session_register('var');
?>
<a href="second.php">Link</a>
[second.php]
<?php
global $var;
print $var;
?>
After click on the link my (second.php) script print nothing. What's wrong?