Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>HOTEL</title>
- </head>
- <body>
- <?php
- $hotels=array(
- array('nama'=>'Hotel Satu','deskripsi'=>'Lorem ipsum','harga'=>'320000','feature'=>'1,2,4,6,8'),
- array('nama'=>'Hotel Dua','deskripsi'=>'Deskripsi yng kedua','harga'=>'350000','feature'=>'1,2,4,5,7,9'),
- );
- $features=array(
- 1=>'Breakfast',
- 'WIFI',
- 'Hair Dryer',
- 'LCD TV',
- 'Shower and Tab',
- 'Security System',
- 'Air Conditioning',
- 'Minibar',
- 'Tea and Coffe Shop'
- );
- foreach($hotels as $hotel){
- echo "<div><h3>{$hotel['nama']}</h3>";
- echo "<h1>Rp. ".number_format($hotel['harga'],0,',','.').",-</h1>";
- echo "<h4>{$hotel['deskripsi']}</h4>";
- echo "<fieldset><legend>Fitur</legend>";
- $f=explode(',',$hotel['feature']);
- foreach($features as $k=>$feature){
- echo "<input type='checkbox' name='feature[]' value='{$k}'"
- .(in_array($k,$f)?" checked":"")."> {$feature} "
- .($k%3==0?"<br>":"");
- }
- echo "</fieldset></div>";
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment