📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
esnafbul.demodesign.com.tr
/
panel
/
listele
📝
offerdetail.php
← Geri Dön
<?php echo !defined("GUVENLIK") ? die("Vaoww! Bu ne cesaret?") : null;?> <title>Talep Detayı| <?=$ayar['site_baslik']?></title> <?php $talepdetay = $db ->prepare("select * from talep where id='$_GET[talep_id]' order by id desc"); $talepdetay ->execute(); $talepoku = $talepdetay->fetch(PDO::FETCH_ASSOC); $talepDurum = $db->prepare("UPDATE talep SET durum = 0 WHERE id='$_GET[talep_id]' "); $talepDurum->execute(); ?> <?php if($talepdetay->rowCount() == 0 ) { header("Location:pages.php?sayfa=taleplar"); } ?> <form class="form-horizontal form-bordered" style="width: 100%"> <!-- BEGIN: Content --> <input type="hidden" name="dil" value="<?=$_SESSION['dil']?>"> <div class="content"> <div class="intro-y flex items-center mt-8"> <h2 class="text-lg font-medium mr-auto" style="margin-bottom: 10px"> Talep Detayı </h2> </div> <div style="border-bottom:1px solid #EBEBEB; margin-bottom:20px"> <a href="pages.php?sayfa=teklifler" class="btn btn-dark"><i class="fa fa-arrow-left" style="margin-right: 10px"></i> Geri Dön</a> <br> <br> </div> <div class="grid grid-cols-12 gap-6 mt-5"> <div class="intro-y col-span-12 lg:col-span-6"> <!-- BEGIN: Form Layout --> <div class="intro-y box p-5"> <div> <label for="crud-form-1" class="form-label"><b>Gönderen</b></label><br> <?=$talepoku['isim']?> </div> <br> <div class="mt-3"> <label for="crud-form-1" class="form-label"><b>Gönderilme Tarihi</b></label><br> <?php echo date_tr('j F Y, H:i, l ', ''.$talepoku['tarih'].''); ?> </div> <br> <div class="mt-3"> <label for="crud-form-1" class="form-label"><b>Telefon Numarası</b></label><br> <?=$talepoku['telno']?> </div> <br> <div class="mt-3"> <label for="crud-form-1" class="form-label"><b>E-Posta Adresi</b></label><br> <?=$talepoku['eposta']?> </div> <br> <div class="mt-3"> <label for="crud-form-1" class="form-label"><b>Adres</b></label><br> <?=$talepoku['adres']?> </div> <br> <div class="mt-3"> <label for="crud-form-1" class="form-label"><b>Mesaj</b></label><br> <?=$talepoku['mesaj']?> </div> </div> <!-- END: Form Layout --> </div> </div> </div> </form>
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula