Sun Oct 26, 2008 8:36 pm
<?php
session_start();
$_SESSION['username'] = "Joe";
echo "Your username is: ".$_SESSION['username'].".<br />";
/* Delete the session variable. */
unset($_SESSION['username']);
/* Demonstrate that session variable is indeed gone. */
echo "Username now set to: ".$_SESSION['username'].".";
?>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.