I have two files that I want to be linked together.
The first filecode is:
<?php
session_start();
$name="Cirela"
session_register("name")
?>
<a href="file2.php">File2</a>
The second filecode is:
<?php
session_start();
print$name;?>
The first one gives a link to number 2 correct. But when I click on that one to open file number 2 the file opens blank without returning anything.
What can be wrong.
Please help anyone?