| 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">
<h4 class="header-title m-t-0 m-b-30">الذاكرة الداخلية</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;">اسم المنتج</th>
<th style="text-align: center;">التصنيف</th>
<th style="text-align: center;">الإجراء</th>
</tr>
</thead>
<tbody>
<?php
$db = new Database();
$query = "SELECT * FROM `products` WHERE `phone` = 1";
$result = $db->dbQuery($query);
if($db->dbNumRows( $result)){
$rows = $db->dbFetchResult($result);
foreach($rows as $row){ ?>
<tr>
<th scope="row"> <?= $row[0]; ?></th>
<td> <?= $row[1]; ?></td>
<td> <?= $row['subclass']; ?></td>
<td>
<a href="memory_event.php?&id=<?= $row[0] ?>">اضافة<i class="fa fa-money"></i></a>
<a href="edit_memorys_event.php?&id=<?= $row[0] ?>">تعديل<i class="fa fa-edit"></i></a>
</td>
</tr>
<?php } } ?>
</tbody>
</table>
</div>
</div><!-- end col -->
</div>
<!-- end row -->
<?php
include "footer.php";
?>