| 
<?php if(!defined("SIMPLE_USERSYETEM"))die("Unauthorised Access!!!"); 
?><!DOCTYPE html>
 
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 <title>Simple User System Class</title>
 <link href="example3/style.css" rel="stylesheet" type="text/css" media="screen" />
 </head>
 <body>
 <div id="header">
 <h1><a href="#">Simple User System</a></h1>
 <h2>By Abhishek Shukla</h2>
 </div>
 <div id="menu">
 <ul>
 <?php echo $menu; ?>
 </ul>
 </div>
 <hr />
 <div id="latest-post" class="post" style="min-height:300px">
 <?php echo $content; ?>
 </div>
 <div id="recent-posts">
 <h2> </h2>
 </div>
 <hr />
 <div id="footer">
 <p class="legal">Copyright © Sitename.com </p>
 <p class="credit">Site Maintained by <a href="#">XYZ</a> </p>
 </div>
 
 </body>
 </html>
 
 |