Advertisement
Guest User

Untitled

a guest
Apr 11th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <table>
  2.     <?php foreach($this->clubs as $clubs) : ?>
  3.     <tr>
  4.         <td><a href="<?php echo $this->url(array(
  5.                         'controller' => 'ClubDescription',
  6.                         'action' => 'index'
  7.                         ));
  8.                     ?>"><?php echo $this->escape($clubs->club_name);?></a></a></td>
  9.         <td><?php echo $this->escape($clubs->rating);?></td>
  10.     </tr>
  11.     <?php endforeach; ?>
  12. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement