Lachenzelg/admin/categories.php
2025-01-07 03:02:25 +01:00

47 lines
1.4 KiB
PHP

<?php include('includes/header.php'); ?>
<div>
<div class="card card-body p-4">
<div class="row">
<div class="col-8">
<h3 class="fw-semibold mb-4">Kategorien</h3>
</div>
<div class="col-4">
<a href="categories-create.php" class="btn btn-info mx-1 float-end"> <i class="ti ti-plus"></i> Hinzufügen</a>
</div>
</div>
<?= alertMessage(); ?>
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th></th>
</tr>
</thead>
<tbody>
<?php
$categories = getAll('id,name','tbl_categories');
if(mysqli_num_rows($categories) > 0){
foreach ($categories as $categoryEntry) {
?>
<tr onmouseover="this.style.backgroundColor='#f5f5f5'; this.style.cursor='pointer';" onmouseout="this.style.backgroundColor='';" onclick="window.location.href='categories-edit.php?id=<?= $categoryEntry['id']; ?>';">
<td><?= $categoryEntry['name']; ?></td>
</tr>
<?php
}
} else {
?>
<tr>
<td colspan="3">Keine Einträge gefunden</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
<?php include('includes/footer.php'); ?>