Subversion Repositories computer_asset_manager_v1

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 rodolico 1
<?php include_once( 'header.php' ); ?>
2
<?xml version="1.0" encoding="utf-8"?>
3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
<html xmlns="http://www.w3.org/1999/xhtml">
5
<head>
6
  <title>Daily Data - Computer Asset Management Program</title>
7
</head>
8
<body>
9
   <?php 
10
     if ($_SESSION['where_clause'] == 'ADMINISTRATOR') {
11
        doAdmin();
12
     } else {
13
        print "Invalid Access";
14
     }
15
   ?>
16
 
17
</body>
18
</html>
19