CodeIgniter Forums
Codeigniter - Indonesia Community - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1)
+--- Forum: Regional User Groups (https://forum.codeigniter.com/forumdisplay.php?fid=25)
+--- Thread: Codeigniter - Indonesia Community (/showthread.php?tid=544)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17


RE: Codeigniter - Indonesia Community - [email protected] - 12-12-2022

Salam kenal


RE: Codeigniter - Indonesia Community - bhento_bharost - 01-10-2023

Salam Kenal Semuanya,

Kepada suhu2 minta tolong untuk script berikut ada yang salah letak bagian mana ya

<!-- Table with stripped rows -->
<div class="row">
<?php foreach ($galleries as $gallery) : ?>
<div class="col-lg-4">
<div>
<div class="card card-gallery">
<a href="<?= base_url('/assets/img/gallery/' . $gallery['image']) ?>" target="_blink">
<?php
$getMimeTypeFile = mime_content_type('assets/img/gallery/' . $gallery['image']);
$checkMimeTypeFile = strtok($getMimeTypeFile, '/');

?>
<?php if ($checkMimeTypeFile == 'application') : ?>
<img src="<?= base_url('/assets/img/gallery/document.png') ?>" alt="ini gambar" class="center-cropped">
<?php elseif ($checkMimeTypeFile == 'video') : ?>
<img src="<?= base_url('/assets/img/gallery/videos.jpg') ?>" alt="ini gambar" class="center-cropped">
<?php elseif ($checkMimeTypeFile == 'image') : ?>
<img src="<?= base_url('/assets/img/gallery/' . $gallery['image']) ?>" alt="ini gambar" class="center-cropped">
<?php endif ?>
</a>
</div>

<div class="text-center pb-5">
<a href="<?= base_url('/admin/gallery/' . $gallery['id'] . '/edit') ?>" class="btn btn-secondary d-block d-lg-inline my-1"><i class="bi bi-pencil-square"></i></a>
<a href="#" data-href="<?= base_url('/admin/gallery/' . $gallery['id'] . '/delete') ?>" onclick="confirmToDelete(this)" class="btn btn-danger d-block d-lg-inline my-1"><i class="bi bi-trash"></i></a>
</div>
</div>
</div>

<?php endforeach ?>

Maklum suhu masih newbie mohon bimbingannya ya