source: trunk/gmrs/scripts/hw/list.php@ 679

Last change on this file since 679 was 679, checked in by george, 15 years ago
File size: 594 bytes
Line 
1<?php
2include('./scripts/global/sel_array.php');
3?>
4<table class="tabulka">
5<tr><td><b><? echo $lang_hw.":"; ?></b></td></tr>
6<tr>
7<td width="140"><? echo $lang_date; ?>:</td>
8<td width="140"><? echo $lang_hwtask; ?>:</td>
9<td width="140"><? echo $lang_subject; ?>:</td>
10</tr>
11<? while($rows=mysql_fetch_array($result)){ ?>
12<tr>
13<td>
14<? echo antiXSS($rows['date']); ?>
15</td>
16<td>
17<a href="index.php?nav=hwv&id=<? echo $rows['id'] ?>"><? echo antiXSS($rows['ukol']); ?></a>
18</td>
19<td>
20<?
21$predmet=$rows['predmet'];
22echo antiXSS($sub[$predmet]); ?>
23</td>
24</tr>
25<?php
26}
27mysql_close();
28?>
29</table>
Note: See TracBrowser for help on using the repository browser.