Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?php foreach($divesite->diveoperators->find_all() as $diveoperator) { ?>
  2.     <div>
  3.         <img src="<?php echo $diveoperator->photos->find_all()->current()->mediumfile; ?>" />
  4.         <h2><?php echo html::anchor("diveoperator/view/$diveoperator->id","$diveoperator->name"); ?></h2>
  5.         <p><?php echo $diveoperator->description; ?></p>
  6.     </div>
  7. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement