ÿØÿàJFIFHHÿá .
BSA HACKER
Logo of a company Server : Apache
System : Linux nusantara.hosteko.com 4.18.0-553.16.1.lve.el8.x86_64 #1 SMP Tue Aug 13 17:45:03 UTC 2024 x86_64
User : koperas1 ( 1254)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /home/koperas1/public_html/app/Views/admin/panduan/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/koperas1/public_html/app/Views/admin/panduan/index.php
<table class="table table-bordered" id="example1">
	<thead>
		<tr>
			<th width="5%">No</th>
			<th width="10%">File</th>
			<th width="30%">Judul</th>
			<th width="15%">Kategori</th>
			<th width="15%">Jenis</th>
			<th width="15%">Author</th>
		</tr>
	</thead>
	<tbody>
		<?php $no = 1;

foreach ($download as $download) { ?>
		<tr>
			<td><?= $no ?></td>
			<td>
				<?php if ($download['gambar'] === '') {
    echo '-';
} else { ?>
					<a href="<?= base_url('admin/download/unduh/' . $download['id_download']) ?>" class="btn btn-success btn-sm"><i class="fa fa-download"></i> Unduh</a>
				<?php } ?>
			</td>
			<td><?= $download['judul_download'] ?>
				<small>
					<br><i class="fa fa-link"></i> <?= $download['website'] ?>
				</small>
			</td>
			<td><?= $download['nama_kategori_download'] ?></td>
			<td><?= $download['jenis_download'] ?></td>
			<td><?= $download['nama'] ?></td>
		</tr>
		<?php $no++; } ?>
	</tbody>
</table>