Current Path :
/
usr
/
share
/
doc
/
cpanel-php74-horde-view-2.0.6
/
examples
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//usr/share/doc/cpanel-php74-horde-view-2.0.6/examples/template.php
<?php /** * @package View */ if ($this->books): ?> <!-- A table of some books. --> <table> <tr> <th>Author</th> <th>Title</th> </tr> <?php foreach ($this->books as $key => $val): ?> <tr> <td><?php echo $this->escape($val['author']) ?></td> <td><?php echo $this->escape($val['title']) ?></td> </tr> <?php endforeach; ?> </table> <?php else: ?> <p>There are no books to display.</p> <?php endif; ?>