fhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhd dfhdfhdfhdfhdfhdfhdfhdfdfhdfhdfhdhfdfhdfhdfhdfh
| DIR:/home/u1105814/public_html/rarental.co.id/mountana-villa/ |
| Current File : /home/u1105814/public_html/rarental.co.id/mountana-villa/galleri.php |
<div class="list-section pt-80 pb-80">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div class="section-title">
<h3> Galleri</h3>
</div>
</div>
</div>
<div class="row single-product-item1">
<?php $qgalleri=mysqli_query($connect,"SELECT * FROM galleri");
while ($fgalleri=mysqli_fetch_array($qgalleri))
{
$foto =$fgalleri['gambar'];
?>
<div class="col-lg-4">
<div class="list-box d-flex justify-content-start align-items-center">
<div class="content">
<?php
$file = "admin/modul/mod_galleri/mobil/$foto";
$ext = pathinfo($file, PATHINFO_EXTENSION);
if (in_array(strtolower($ext), ['jpg', 'jpeg', 'png', 'gif'])) {
// Tampilkan gambar
echo "<img src='$file' width='370' height='278' alt=''>";
} elseif (in_array(strtolower($ext), ['mp4', 'webm', 'ogg'])) {
// Tampilkan video
echo "
<video width='370' height='278' controls>
<source src='$file' type='video/$ext'>
Browser Anda tidak mendukung pemutar video.
</video>";
} else {
echo "File tidak dikenali sebagai gambar atau video.";
}
?>
</div>
</div>
</div>
<?php ;}?>
</div>
</div>
</div>
|