cahyadsn

Hotel Features

Oct 17th, 2017
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>HOTEL</title>
  5. </head>
  6. <body>
  7. <?php
  8. $hotels=array(
  9.   array('nama'=>'Hotel Satu','deskripsi'=>'Lorem ipsum','harga'=>'320000','feature'=>'1,2,4,6,8'),
  10.   array('nama'=>'Hotel Dua','deskripsi'=>'Deskripsi yng kedua','harga'=>'350000','feature'=>'1,2,4,5,7,9'),
  11. );
  12. $features=array(
  13.   1=>'Breakfast',
  14.      'WIFI',
  15.      'Hair Dryer',
  16.      'LCD TV',
  17.      'Shower and Tab',
  18.      'Security System',
  19.      'Air Conditioning',
  20.      'Minibar',
  21.      'Tea and Coffe Shop'
  22. );
  23.  
  24. foreach($hotels as $hotel){
  25.   echo "<div><h3>{$hotel['nama']}</h3>";
  26.   echo "<h1>Rp. ".number_format($hotel['harga'],0,',','.').",-</h1>";
  27.   echo "<h4>{$hotel['deskripsi']}</h4>";
  28.   echo "<fieldset><legend>Fitur</legend>";
  29.   $f=explode(',',$hotel['feature']);
  30.   foreach($features as $k=>$feature){
  31.    echo "<input type='checkbox' name='feature[]' value='{$k}'"
  32.         .(in_array($k,$f)?" checked":"")."> {$feature} "
  33.         .($k%3==0?"<br>":"");
  34.   }
  35.   echo "</fieldset></div>";
  36. }
  37.  
  38. ?>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment