| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/(Del)pathways.org.hk/MIS20140127/old20140407/System/ |
Upload File : |
<!DOCTYPE html>
<?php require_once 'Prog_Subject_SQL.php'; ?>
<html>
<head>
<?php require_once '../include/head.php'; ?>
<?php require_once '../include/checkuser.php'; ?>
<?php require_once '../include/Nav_bar.php'; ?>
</head>
<body>
<!-- line between nav bar and content -->
<div class="text-right">
<ul class="breadcrumb">
<li class="active">Programme Subject</li>
</ul>
</div>
<div class="container-fluid pathways-container">
<a class="btn" href="Prog_Subject_AddPage.php" style="float: right"><i class="icon-plus"></i> Add</a>
<h3>Programme Subject</h3>
<form action="Prog_Subject_AddPage.php" method="get" autocomplete="off">
<table class="table table-striped table-bordered table-hover table-condensed">
<thead>
<tr>
<th style="width: 5%"></th>
<th>Programme</th>
<th>Subject</th>
<th>Group,Individual / Package</th>
</tr>
</thead>
<tbody>
<?php $result = SearchList(); ?>
<?php foreach ($result as $a) { ?>
<?php $iP = isPackage($a); ?>
<tr>
<td style="text-align: left;">
<a class="btn" href="Prog_Subject_AddPage.php?ps_id=<?= $a['prog_subj_id'] ?>&view=">View</a>
</td>
<td><?= $a['program_code'] ?></td>
<td><?= $a['sub_code'] ?></td>
<td><?= $iP ? "Package" : "Indivalual / Group" ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</form>
</div> <!-- /container -->
</body>
</html>