Current File : /home/inlingua/www/dwarka/icentex/workshop/schedule.php |
<?php
include("header_trainer.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();
$query="select * from ingl_workshop_schedule where recNo='1'";
$result=mysqli_query($conn,$query);
$num=mysqli_fetch_array($result);
?>
<h3>Workshops Schedule (<a href='../trainer_resource_admin/calendar/<?php echo $num['file_name']; ?>' target='_blank'>Download</a>)</h3>
<style>
.border {
border-bottom: 1px solid
#D85C0B;
}
</style>
<table border="0" cellspacing="0" cellpadding="2" width="90%" style="font-size: 1em" align="center">
<tr><td class="border">
<iframe id="fred" style="border:1px solid #666CCC" title="Workshop Schedule" src="../trainer_resource_admin/calendar/<?php echo $num['file_name']; ?>" frameborder="1" scrolling="auto" height="1100" width="850" ></iframe>
</td></tr>
</table>
<table border="0" cellspacing="0" cellpadding="2" width="90%" style="font-size: 1em" align="center"> <tr><td>Notes:</td><td> </td><td> </td></tr> <tr>
<td>1. Please register through i-Centex.</td>
<td> </td><td> </td></tr>
<tr><td>2. All courses will be held in the South Extension center unless otherwise specified</td><td> </td><td></td></tr></table>
<?php
include("footer_trainer.php");
?>