I would be grateful if someone could suggest what I need to do to get this to work.
I have copied two short scripts which should demo the use of $_session, but the read script does not work. I believe the save script is the culprit though. Here they are:
Program 1:
<?php
session_start();
// this sets variables in the session
$_SESSION['color']='red';
$_SESSION['size']='small';
$_SESSION['shape']='round';
print "Done";
?>
The Done is displayed when run.
Program 2:
<?php
session_start();
echo $_SESSION['color'];
echo $_SESSION['size'];
echo $_SESSION['shape'];
?>
When this is run I just get a blank screen
Thanks in advance for your time to reply to me.
Stephen