Current File : /home/inlingua/public_html/icentex/trainer_resource_admin/show_session.php |
<?php
// Include the database connection details
require('../dbConnection.php');
// Include common functions
require('../commonFunc.php');
// Include common functions
require('../globalVars.php');
require('../dbHandler.class.php');
$dbObject = new dbHandler();
$dbObject->connect();
$CID=$_REQUEST['CID'];
?>
<div style="width:100%;float:left;">
<div style="width:30%;float:left;text-align:center;"><input type="text" name="session_date[]" id="datepicker<?php echo $CID; ?>" size="15" value="" /></div>
<div style="width:60%;float:left;text-align:center;">
<?php echo createHours('start_hour[]', $dbObject->getDbField('start_hour')); ?>:<?php echo createMinutes('start_minute[]', $dbObject->getDbField('start_minute')); ?> To <?php echo createHours('end_hour[]', $dbObject->getDbField('end_hour')); ?>:<?php echo createMinutes('end_minute[]', $dbObject->getDbField('end_minute')); ?>
</div>
<div style="float:left;width:8%"><a href='javascript:removeElement_1("my<?php echo $CID+1;?>Div");'><img src="images/delete.png" style="border:none;" title="Click to delete" /></a></div>
</div>