Store in GIT
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
require('../php/connect.php');
|
||||
|
||||
SESSION_START();
|
||||
if($_SESSION['login']>1){
|
||||
|
||||
$query_docent = "SELECT DISTINCT (`docent`) FROM `lessen`";
|
||||
$result_array_docent = mysql_query($query_docent, $connection);
|
||||
?>
|
||||
|
||||
<form>
|
||||
|
||||
<table cellpadding='0' cellspacing='5' width='600px'>
|
||||
|
||||
<tr><td width='200px' align='center'></td><td width='200px' align='center'><br>Docent</td><td width='200px' align='center'></td></tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td align='center'>
|
||||
</td>
|
||||
|
||||
<!-- DOCENT -->
|
||||
<td align='center'> <select id='docent' multiple size='5' name='docent' onchange="getRooster(this.form, this.id, this.value); ">
|
||||
<?php while($result_docent = mysql_fetch_assoc($result_array_docent)) { ?>
|
||||
|
||||
<option> <?php echo $result_docent['docent']; ?> </option>
|
||||
|
||||
<?php } ?>
|
||||
</select>
|
||||
</td>
|
||||
|
||||
<td align='center'>
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</form>
|
||||
<?php } else { echo false; } ?>
|
||||
Reference in New Issue
Block a user