Current File : /home/inlingua/www/dwarka/icentex/admin_fd/ingl_class.view.php
<?php
// Copyright, Panalink Infotech Limited. Created on: 27-11-2010

// Include header
include "header_fd.php";
?>
<h3>&nbsp;&nbsp;&nbsp;Fd Admin</h3>
<div id="contentnew">
<?php
echo '<h4>'.$succFailMesg.'</h4>'; 

$query2="select location from timesheet_location where recNo='".$dbObject->getDbField('c_location')."' ";
$res1=mysqli_query($conn,$query2);
$row=mysqli_fetch_assoc($res1);
?>

<table border='1' class='pa-nor' width="100%" cellpadding="3" cellspacing="0">
<tr valign='top'><td width="25%">Location</td>
<td width="75%"><?php echo $row[location];?>&nbsp;</td>
</tr>
<tr valign='top'><td>Class Name </td><td><?php echo $dbObject->getDbField('c_name');?>&nbsp;</td></tr>
<tr valign='top'><td>Capacity</td><td><?php echo $dbObject->getDbField('c_capacity');?>&nbsp;</td></tr>

</table>
</div>


<?php
// Include footer
include "footer_fd.php";
?>