This file contains 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
-- ----------------------------------------------------- | |
-- Table `users` | |
-- ----------------------------------------------------- | |
CREATE TABLE IF NOT EXISTS `users` ( | |
`UID` INT(25) NOT NULL , | |
`username` VARCHAR(60) NOT NULL , | |
`password` VARCHAR(100) NOT NULL , | |
`ownerFN` VARCHAR(50) NOT NULL , | |
`ownerLN` VARCHAR(100) NOT NULL , |
This file contains 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 | |
class INFO | |
{ | |
// FUNCTION what menjelaskan apa fungsi halaman ini | |
function what($type='edit') | |
{ | |
// ADMIN.PHP |
This file contains 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> |
NewerOlder