Ok hi! Well I have written this script that is suppose to register a session. Define a variable.. Then open the session and echo the variable. However it does not work.
If you could please help me out with some guidence on this i would appritiate it.
Thank you
Anthony
This is my script
<?php
// Cookie testing page
session_start();
if(!isset($_SESSION['vars'])) {
$_SESSION['pic1'] = "pic1";
}
session_start();
echo $_SESSION['pic'];
?>