HEX
Server: Apache/2.4.65 (Unix) OpenSSL/3.5.1
System: Linux bavaria.hybridsync.com 5.14.0-611.41.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Mar 19 03:50:11 EDT 2026 x86_64
User: hdradio (1005)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/hdradio/public_html/mobile2/admin.php
<?php include_once('includes/header.php'); ?>

<?php

	error_reporting(0);

	if (isset($_REQUEST['keyword']) && $_REQUEST['keyword']<>"") {
		$keyword = $_REQUEST['keyword'];
		$reload = "admin.php";
		$sql =  "SELECT * FROM tbl_admin WHERE username LIKE '%$keyword%'";
		$result = $connect->query($sql);
	} else {
		$reload = "admin.php";
		$sql =  "SELECT * FROM tbl_admin ORDER BY id DESC";
		$result = $connect->query($sql);
	}

	$rpp = $postPerPage;
	$page = intval($_GET["page"]);
	if($page <= 0) $page = 1;  
	$tcount = mysqli_num_rows($result);
	$tpages = ($tcount) ? ceil($tcount / $rpp) : 1;
	$count = 0;
	$i = ($page-1) * $rpp;
	$no_urut = ($page-1) * $rpp;

?>

<section class="content">

	<ol class="breadcrumb">
		<li><a href="dashboard.php">Dashboard</a></li>
		<li class="active">Manage Admin</a></li>
	</ol>

	<div class="container-fluid">

		<div class="row clearfix">
			<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
				<div class="card corner-radius">
					<div class="header">
						<h2>MANAGE ADMIN</h2>
						<div class="header-dropdown m-r--5">
							<a href="admin-add.php"><button type="button" class="button button-rounded btn-offset waves-effect waves-float">ADD NEW ADMIN</button></a>
						</div>
					</div>

					<div style="margin-top: -10px;" class="body table-responsive">

						<?php if(isset($_SESSION['msg'])) { ?>
						<div class='alert alert-info alert-dismissible corner-radius bottom-offset' role='alert'>
							<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span>&nbsp;&nbsp;</button>
							<?php echo $_SESSION['msg']; ?>
						</div>
						<?php unset($_SESSION['msg']); } ?>

						<form method="get" id="form_validation">
							<table class='table'>
								<tr>
									<td>
										<div class="form-group form-float">
											<div class="form-line">
												<input type="text" class="form-control" name="keyword" placeholder="Search..." required>
											</div>
										</div>
									</td>
									<td width="1%"><a href="admin.php"><button type="button" class="button button-rounded waves-effect waves-float">RESET</button></a></td>
									<td width="1%"><button type="submit" class="btn bg-blue btn-circle waves-effect waves-circle waves-float"><i class="material-icons">search</i></button></td>
								</tr>
							</table>
						</form>

						<?php if ($tcount == 0) { ?>
							<p align="center" style="font-size: 110%;">There are no admins.</p>
						<?php } else { ?>							

						<table class='table table-hover table-striped table-offset'>
							<thead>
                                <tr>
                                    <th>Username</th>
                                    <th>Full Name</th>
                                    <th>Email</th>
                                    <th width="15%">Action</th>
                                    </tr>
                            </thead>
							<?php
							while(($count < $rpp) && ($i < $tcount)) {
								mysqli_data_seek($result, $i);
								$data = mysqli_fetch_array($result);
								?>
								<tr>
									<td><span class="label label-rounded bg-green"><?php echo $data['username'];?></span></td>
									<td><?php echo $data['full_name'];?></td>
									<td><?php echo $data['email'];?></td>
									<td>
										<a href="admin-edit.php?id=<?php echo $data['id']; ?>">
											<i class="material-icons">mode_edit</i>
										</a>

										<?php
										if ($data['id'] == 1) {

										} else {
											?>
											<a href="admin-delete.php?id=<?php echo $data['id'];?>" onclick="return confirm('Are you sure want to delete this user?')" >
												<i class="material-icons">delete</i>
											</a>
											<?php
										}
										?>

									</td>
								</tr>
								<?php
								$i++; 
								$count++;
							}
							?>
						</table>

						<?php } ?>

						<?php if ($tcount > $postPerPage) { echo pagination($reload, $page, $keyword, $tpages); } ?>

					</div>

				</div>
			</div>
		</div>
	</div>
</section>

<?php include_once('includes/footer.php'); ?>