PHP Classes

File: example3/contact.php

Recommend this page to a friend!
  Classes of Abhishek Shukla   Simple XML User System   example3/contact.php   Download  
File: example3/contact.php
Role: Auxiliary script
Content type: text/plain
Description: example script
Class: Simple XML User System
Manage users storing their records in XML files
Author: By
Last change:
Date: 8 years ago
Size: 1,079 bytes
 

Contents

Class file image Download
<?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">
    <h1 class="title"><a href="#">Contact</a></h1>
<p>This is Contact Page.</p>
<p>This page is coming form a separate template.</p>
<p>Page html can be passed as a variable or a template.</p>
<p>In this case Page html is passed as a template.</p>
</div>
<div id="recent-posts">
    <h2>&nbsp;</h2>
</div>
<hr />
<div id="footer">
    <p class="legal">Copyright &copy; Sitename.com </p>
    <p class="credit">Site Maintained by <a href="#">XYZ</a> </p>
</div>

</body>
</html>