| Server IP : 172.64.80.1 / Your IP : 172.71.120.136 Web Server : Apache System : Linux mail.federalpolyede.edu.ng 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64 User : federalpolyede.edu.ng_idh35skikv ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/federalpolyede.edu.ng/httpdocs/admin_main/ |
Upload File : |
<?php
/**
* Created by PhpStorm.
* User: adisa
* Date: 3/2/2016
* Time: 3:30 PM
*/
include('ace_headMain.php');
?>
<div class="row">
<div class="col-lg-12">
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
<div class="row">
<div class="col-lg-12">
<div class="panel panel-info">
<div class="panel-heading">
Admitted Students
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<div class="dataTable_wrapper">
<table class="table table-striped table-bordered table-hover" id="dataTables-example">
<thead>
<tr >
<th>Form No</th>
<th>Full Name</th>
<th>Department</th>
<th>Level ID</th>
<th>Status</th>
<th>Mobile No.</th>
</tr>
</thead>
<tbody>
<?php
$i=0;
while ($row=$query->fetch(PDO::FETCH_BOTH)){
?>
<tr class="odd gradeX">
<td><?php echo $row['formNo']; ?></td>
<td><?php echo $row['names']; ?></td>
<td><?php echo $row['course']; ?></td>
<td class="center"><?php $k= $row['levelID'];
$r=($db->query("select levelName from leveltb where id='$k'")->fetch(PDO::FETCH_BOTH));
echo $r['levelName'];?></td>
<td class="center"><?php echo $row['status']; ?></td>
<td class="center"><?php echo $row['gsm']; ?></td>
</tr>
<?php
++$i;
}
?>
</tbody>
</table>
</div>
<!-- /.table-responsive -->
<div class="well">
<?php
include('footMain.php');
?>