HOME SHELL

NULLCOMMUNITY
 LiteSpeed
 Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64
 safemode : OFF
 MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF
  >  / home / cuneytsener53 / otel1.snrsoft.com.tr / trex /

Server Ip : 104.21.78.54




Filename/home/cuneytsener53/otel1.snrsoft.com.tr/trex/rezervasyon.php
Size2.25 kb
Permissionrw-r--r--
Owner
Create time02-Mar-2025 05:46
Last modified30-Dec-2019 11:41
Last accessed05-Apr-2025 10:06
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
include 'header.php';
include 'topbar.php';
include 'sidebar.php';
$randevusor=$db->prepare("SELECT * from randevu");
$randevusor->execute(array(0));
?>
<!-- ============================================================== -->
<!-- Content Start -->
<!-- ============================================================== -->
<section class="main-content container">
<div class="page-header">
<h2>Rezervasyon İşlemleri</h2>
</div>
<div class="row">
<!-- İLETİŞİM MESAJLARI -->
<div class="col-md-12">
<div class="card">
<div class="card-heading card-default">
Gelen Rezervasyon Telepleri
</div>
<div class="card-block">
<table id="datatable1" class="table table-striped dt-responsive nowrap table-hover">
<thead>
<tr>
<th class="text-left">
<strong>Oluşturulma Tarihi</strong>
</th>
<th class="text-left">
<strong>Ad Soyad</strong>
</th>
<th class="text-left">
<strong>Telefon</strong>
</th>
<th class="text-left">
<strong>Giriş Çıkış Tarihleri</strong>
</th>
<th class="text-center">
<strong>İşlemler</strong>
</th>
</tr>
</thead>
<tbody>
<?php
while ($randevuprint=$randevusor->fetch(PDO::FETCH_ASSOC)) {
?>
<tr>
<td><?php echo $randevuprint['randevu_tarih']; ?></td>
<td><?php echo $randevuprint['randevu_ad']; ?></td>
<td><?php echo $randevuprint['randevu_tel']; ?></td>
<td><?php echo $randevuprint['randevu_giris']." - ".$randevuprint['randevu_donus']; ?></td>
<td class="text-center">
<a href="rezervasyon-detay.php?randevu_id=<?php echo $randevuprint['randevu_id']; ?>" title="Göster" class="btn btn-sm btn-success"><i class="fa fa-eye"></i></a>
<a href="controller/function.php?rezervasyonsil=ok&randevu_id=<?php echo $randevuprint['randevu_id']; ?>" title="Sil" class="btn btn-sm btn-danger"><i class="fa fa-trash"></i></a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
<!-- İLETİŞİM MESAJLARI -->
</div>
<?php include 'footer.php'; ?>