view.php

Go to the documentation of this file.
00001 <?php  $this->load->view('header');  ?>
00002 
00003 <table border="0" cellpadding="0" cellspacing="1" style="width:100%">
00004  <tr>
00005         <th>Edit</th>
00006         <th>Delete</th>
00007         <?php foreach($fields as $field): ?>
00008         <th><?php echo $field; ?></th>
00009         <?php endforeach; ?>
00010 </tr>
00011 
00012 <?php foreach($query->result() as $row): ?>
00013  <tr>
00014         <td>&nbsp;<?php echo anchor(array($base_uri, 'edit', $row->$primary), $scaff_edit); ?>&nbsp;</td>
00015         <td><?php echo anchor(array($base_uri, 'delete', $row->$primary), $scaff_delete); ?></td>
00016         <?php foreach($fields as $field): ?>    
00017         <td><?php echo form_prep($row->$field);?></td>
00018         <?php endforeach; ?>
00019  </tr>
00020 <?php endforeach; ?>
00021 </table>
00022 
00023 <?php echo $paginate; ?>
00024 
00025 <?php $this->load->view('footer'); 
00026 /* End of file view.php */
00027 /* Location: ./system/scaffolding/views/view.php */