This is what I tried doing
$Firstname has the indiviual's name stored in it.
session_start();
session_register($Firstname);
Then on the next page I did a
session_start() and tried to echo the value of $Firstname ... but nothing.
Is what I am doing correct?
D