Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $cek="select * from outlet_sofie where wilayah='Jakarta' ";
- $hasil=mysql_query($cek);
- while ($data=mysql_fetch_array($hasil)){
- if ($data['outlet']=="Modern Outlet Lokal") {
- echo "<h3>$data[outlet]</h3>";
- echo ("
- <div class='outlet'>
- <h3>$data[nama_outlet]</h3>
- Alamat : $data[alamat_outlet]<br>
- No Telp : $data[telp_outlet]
- </div>
- ");
- }
- else if ($data['outlet']=="Baby Shop") {
- echo "<h3>$data[outlet]</h3>";
- echo ("
- <div class='outlet'>
- <h3>$data[nama_outlet]</h3>
- Alamat : $data[alamat_outlet]<br>
- No Telp : $data[telp_outlet]
- </div>
- ");
- }
- else if ($data['outlet']=="Apotik") {
- echo "<h3>$data[outlet]</h3>";
- echo ("
- <div class='outlet'>
- <h3>$data[nama_outlet]</h3>
- Alamat : $data[alamat_outlet]<br>
- No Telp : $data[telp_outlet]
- </div>
- ");
- }
- else if ($data['outlet']=="Rumah Sakit/ RSIA/ RSB") {
- echo "<h3>$data[outlet]</h3>";
- echo ("
- <div class='outlet'>
- <h3>$data[nama_outlet]</h3>
- Alamat : $data[alamat_outlet]<br>
- No Telp : $data[telp_outlet]
- </div>
- ");
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement