Advertisement
zulmi

index.php combobox

Nov 26th, 2017
2,290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.81 KB | None | 0 0
  1. <?php
  2. /* @var $this ComboboxController */
  3. /* @var $dataProvider CActiveDataProvider */
  4.  
  5. $this->breadcrumbs=array(
  6.     'Comboboxes',
  7. );
  8.  
  9. $this->menu=array(
  10.     array('label'=>'Tambah', 'url'=>array('combobox/tambah')),
  11.     array('label'=>'Manage Combobox', 'url'=>array('admin')),
  12. );
  13. ?>
  14.  
  15. <h1>Comboboxes</h1>
  16.  
  17. <table border="1" cellpadding="1" cellspacing="1">
  18. <tr style="background-color:orange;color:white;">
  19.     <th>Provinsi</th>
  20.     <th>Kabupaten</th>
  21.     <th>Kecamatan</th>
  22.     <th>Kelurahan</th>
  23.     <th>Harga</th>
  24. </tr>
  25. <?php foreach ($model as $data): ?>
  26. <tr>
  27.     <th><?php echo $data['provinsi'];?></th>
  28.     <th><?php echo $data['kabupaten'];?></th>
  29.     <th><?php echo $data['kecamatan'];?></th>
  30.     <th><?php echo $data['kelurahan'];?></th>
  31.     <th><?php echo $data['harga_pengiriman'];?></th>
  32. </tr>
  33. <?php endforeach;?>
  34. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement