Posted by SeanInSeattle on 12/07/07 15:48
So yeah, I have the following code, which is *not* working. I'm
trying to write a logout.php page. Can someone tell me where I'm
going wrong with this script? Any help is appreciated!
[CODE]
<?php session_start();?>
<html>
<head>
<title>Session Variable Checking</title>
</head>
<body>
<div id="container">
<div class="content">
<h2>Session Checking<BR>
<?
echo "Username: |" . $_SESSION['_USERNAME'] . "|<br/>";
echo "Email: |" . $_SESSION['_EMAIL'] . "|<br/>";
echo "Access: |" . $_SESSION['_ACCESSLVL'] . "|<br/>";
?>
</h2>
</div>
</div>
</body>
</html>
</body>
</html>
[/CODE]
Navigation:
[Reply to this message]
|