Server : LiteSpeed System : Linux in-mum-web983.main-hosting.eu 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : u520472703 ( 520472703) PHP Version : 8.2.29 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Directory : /home/u520472703/domains/gadhiaassociate.com/public_html/admin/ |
<?php
include "components/header.php" ?>
<h1>Intro</h1>
<p>This table includes <?php echo counting("intro", "id");?> Intros.</p>
<table id="sorted" class="table table-striped table-bordered">
<thead>
<tr>
<th>Id</th>
<th>Image</th>
<th>Name</th>
<th>Description</th>
<th class="not">Edit</th>
</tr>
</thead>
<?php
$intro = getAll("intro");
if($intro) foreach ($intro as $intros):
?>
<tr>
<td><?php echo $intros['id']?></td>
<td><?php echo $intros['img']?></td>
<td><?php echo $intros['name']?></td>
<td><?php echo $intros['description']?></td>
<td><a href="edit-intro.php?act=edit&id=<?php echo $intros['id']?>"><i class="glyphicon glyphicon-edit"></i></a></td>
</tr>
<?php endforeach; ?>
</table>
<?php include "components/footer.php" ?>