Advertisement
user21214212

index.phtml

Dec 12th, 2011
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.62 KB | None | 0 0
  1. <table class="datagrid grid_collapsible" width="100%" cellpadding="2" cellspacing="0" id="webbooks_table">
  2.  
  3.   <thead>
  4.     <tr class="datagrid_header">
  5.       <td>Book title</td>
  6.       <td>ID</td>
  7.       <td>ISBN</td>
  8.       <td>Is it visible online?</td>
  9.     </tr>
  10.   </thead>
  11.  
  12.   <tbody>
  13. <?php foreach($this->basicBwDetails as $result): ?>
  14.     <tr>    
  15.       <td><?php echo $result['book_title']; ?></td>
  16.       <td><?php echo $result['id']; ?></td>
  17.       <td><?php echo $result['isbn']; ?></td>
  18.       <td><?php echo ($result['visible_online']) ? 'Yes' : 'No'; ?></td>
  19.     </tr>
  20. <?php endforeach; ?>
  21.   </tbody>
  22.  
  23. </table>
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement