Current File : /home/inlingua/public_html/noida/icentex_noida/attendance/backup/admin_attendance.php |
<?php
include("header_attendance.php");
// Include the database connection details
require('../dbConnection.php');
// Include common functions
require('../commonFunc.php');
// Include common functions
require('../globalVars.php');
// Include the table handler class
require('../dbHandler.class.php');
// Init and connect to database
$dbObject = new dbHandler();
$dbObject->connect();
$queryLWC="select count(id) as tot from leaves where status='waiting'";
$resultLWC=mysql_query($queryLWC);
$numLWC=mysql_fetch_array($resultLWC);
?>
<style>
#adfrom h2,h4,h5,h6
{
/*font-family: Georgia, "Times New Roman", Times, serif;*/
color: #069; /* CHANGE TO CORPORATE COLOUR */
margin-bottom: 1em;
border-bottom:none;
padding-bottom: 0.3em;
}
#adfrom img
{
padding: 3px;
border: 1px solid #ccc;
}
#adfrom a img
{
padding: 3px;
border: 1px solid #ccc;
}
#adfrom a img:hover
{
padding: 3px;
border:none;
}
</style>
<h3>Course Records</h3>
<table align="center" cellpadding="3" cellspacing="3" width="99%" id="adform">
<tbody>
<tr>
<td width="33%" align="center">
<a href="attendance.php" title=""> <h5>Add Course Records</h5></a>
<a href="attendance.php" title=""> <img src="images/add_att.jpg" alt=""></a>
</td>
<td width="33%" align="center">
<a href="attendance_report.php" ><h5>Course Records Report</h5></a>
<a href="attendance_report.php" ><img src="images/att_report.jpg" alt=" "> </a></td>
<td width="33%" align="center"> </td>
</tr>
</tbody></table>
<?php
include("footer_attendance.php");
?>