| Server IP : 46.202.172.170 / Your IP : 216.73.216.59 Web Server : LiteSpeed System : Linux fr-int-web1904.main-hosting.eu 5.14.0-503.34.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Mar 27 06:00:50 EDT 2025 x86_64 User : u627918583 ( 627918583) PHP Version : 8.2.28 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 MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u627918583/domains/techtime-om.com/public_html/controlPanel/ |
Upload File : |
<?php
include "master.php";
?>
<div class="row">
<div class="col-sm-12">
<div class="card-box table-responsive">
<div class="col-md-2 pull-right">
<a href="delete-all-ips_block.php" onclick="return confirm('هل انت متأكد !!');" class="btn btn-danger form-control text-white">حذف جميع اي بي المحظورة</a>
</div>
<div class="col-md-2 pull-right">
<a href="../generate_htaccess.php" style="background-color: #0a781e !important; border: 1px solid #0a781e !important;" class="btn btn-danger form-control text-white">تفعيل اي بي المحظورة</a>
</div>
<h4 class="header-title m-t-0 m-b-30">عناوين IPS المحظورة</h4>
<table id="datatable" class="table table-striped table-bordered" style="text-align: center;">
<thead>
<tr>
<th style="text-align: center;">#</th>
<th style="text-align: center;">IP</th>
<th style="text-align: center;">الإجراء</th>
</tr>
</thead>
<tbody>
<?php
$db = new Database();
$query = "SELECT * FROM `ips_block`";
$result = $db->dbQuery($query);
if($db->dbNumRows( $result)){
$rows = $db->dbFetchResult($result);
foreach($rows as $row){ ?>
<tr>
<th scope="row"> <?= $row['id']; ?></th>
<td> <?= $row['ip_address']; ?></td>
<td>
<a href="delete-ips_block.php?id=<?= $row[0] ?>" onclick="return confirm('هل انت متأكد !!');"><i class="fa fa-trash-o"></i></a>
</td>
</tr>
<?php } } ?>
</tbody>
</table>
</div>
</div><!-- end col -->
</div>
<!-- end row -->
<?php
include "footer.php";
?>