~/tmp/ZF/fbnext/index-2.phtml.html
1 <fieldset>
2 <legend>Wybierz książkę</legend>
3 <form method = "post" action = <?php echo $this->url(
4 array('controller'=>'lektury','action'=>'wybierz'));?> >
5 <table>
6 <tr>
7 <th>Klucz</th>
8 <th>Wartość</th>
9 <th>Wybierz</th>
10 </tr>
11 <tr>
12 <?php foreach($this->table as $klucz=>$x):?>
13 <td><?php echo $this->escape($klucz); ?></td>
14 <td><?php echo $this->escape($x); ?></td>
15 <td><input type="checkbox" value="yes" name=<?php echo $this->escape($klucz);?> /></td>
16 </tr>
17 <?php endforeach ?>
18 </table>
19 <input type = "submit" value = "Zatwierdź" size = "40"/>
20 </form>
21 </fieldset>
Wyszukiwarka