Created
January 28, 2010 06:31
-
-
Save adamramadhan/288495 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if(!empty($_SESSION['LoggedIn']) && !empty($_SESSION['Username'])) | |
{ | |
?> | |
<h1>Member Area</h1> | |
<p>Thanks for logging in! You are <b><?=$_SESSION['Username']?><b> and your email address is <b><?=$_SESSION['EmailAddress']?></b>.</p> | |
<ul> | |
<li><a href="logout.php">Logout.</a></li> | |
</ul> | |
<?php | |
} | |
jika blm login |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment