Skip to content

Instantly share code, notes, and snippets.

@haqqinaole
Created July 16, 2013 08:22
Show Gist options
  • Save haqqinaole/6006833 to your computer and use it in GitHub Desktop.
Save haqqinaole/6006833 to your computer and use it in GitHub Desktop.
tes
<?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