index phtml


~/tmp/ZF/ganext/index.phtml.html  1  2 <h3>Lista studentów III roku</h3>  3 <table>  4 <tr>  5     <th>Imię</th>  6     <th>Nazwisko</th>  7     <th>Album</th>  8     <th>Ocena</th>  9     <th>&nbsp;</th> 10 </tr> 11 <?php foreach($this->student as $student) : ?> 12 <tr> 13     <td><?php echo $this->escape($student->imie);?></td> 14     <td><?php echo $this->escape($student->nazwisko);?></td> 15      <td><?php echo $this->escape($student->album);?></td> 16       <td><?php echo $this->escape($student->ocena_1);?></td> 17     <td> 18         <a href="<?php echo $this->url(array('controller'=>'index', 19             'action'=>'edit', 'id_student'=>$student->id_student));?>">Edit</a> 20         <a href="<?php echo $this->url(array('controller'=>'index', 21             'action'=>'delete', 'id_student'=>$student->id_student));?>">Delete</a> 22     </td> 23 </tr> 24 <?php endforeach; ?> 25 </table> 26 <h3><a href="<?php echo $this->url(array('controller'=>'index', 27         'action'=>'add'));?>">Dodaj studenta</a></h3>

Wyszukiwarka

Podobne podstrony:
index 1 phtml
wstep00 index phtml
index 1 phtml
wstep01 index phtml
index phtml
index 2 phtml
index 1 phtml
index
index
index

więcej podobnych podstron