Created
July 16, 2013 08:22
-
-
Save haqqinaole/6006833 to your computer and use it in GitHub Desktop.
tes
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 | |
require_once ('../../includes/functions.php'); | |
require_once ('../../includes/session.php'); | |
if(!$session->is_logged_in()){redirect_to("login.php");} | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>Photo Gallery </title> | |
<link rel="stylesheet" href="../css/main.css" media="all"> | |
</head> | |
<body> | |
<div id="header"> | |
<h1>Photo Gallery</h1> | |
</div> | |
<div id="main"> | |
<h2>Menu</h2> | |
</div> | |
<div id="footer"> | |
<p>Copyright<?php echo date("Y", time());?> , Haqque naole</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment