I am using the following code, I need to echo the serial and lickey session values out to screen.
I have this code in place:
<?php
session_start();
if (!session_is_registered("SESSION"))
{
header("Location: bob.php");
exit();
}
echo"
<html>
echo"$_SESSION['serial']<br>
$_SESSION['lickey'];
</html>";
?>
I know that the values are correct, as I have echoed them using just php output.
Can anyone help me pls?!