so when i try to read back the session value onto the page i get an 'Undefined variable' error. The code below is from the second page.
If (IsSet ($CName)) {
Echo $CName;
} Else {
Echo "Not Found";
}
Below is the code for the first page that sets the session value.
session_start();
session_register("CUserID");
$CUserID = $row[0];
What am i doing wrong?