📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
petshopscripti.demodesign.com.tr
/
systemx
/
support
/
_add
📝
pricing-ekle.php
← Geri Dön
<?php echo !defined("GUVENLIK") ? die("Vaoww! Bu ne cesaret?") : null;?> <title>Pricing Table Ekle | <?=$ayar['site_baslik']?></title> <?php $Siralama = $db->prepare("select * from pricing where durum='1' and dil='$_SESSION[dil]' "); $Siralama->execute(); ?> <div class="row page-titles"> <div class="col-md-5 align-self-center"> <h4 class="text-themecolor"><i class="mdi mdi-table-edit"></i> Pricing Table Ekle</h4> </div> <div class="col-md-7 align-self-center text-right"> <div class="d-flex justify-content-end align-items-center"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="javascript:void(0)">Yönetim Paneli</a></li> <li class="breadcrumb-item"><a href="pages.php?sayfa=pricingler">Pricing Table</a></li> <li class="breadcrumb-item active">Pricing Table Ekle</li> </ol> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body" style="font-family: 'Open Sans', Arial"> <form action="support/post/insert/pricing-ekle.php" class="form-horizontal form-bordered" method="post" enctype="multipart/form-data"> <input type="hidden" name="dil" value="<?=$_SESSION['dil']?>"> <h3 class="card-title">Pricing Table Ekle</h3> <hr> <div class="form-body"> <div class="form-group row"> <label class="control-label text-right col-md-3" for="yayinDurum" style="margin-top: 7px; margin-bottom: 10px; font-weight: 600">Yayın Durumu</label> <div class="col-md-6"> <input type='hidden' value='0' name='durum'> <input type="checkbox" checked id="yayinDurum" class="js-switch" data-color="#f62d51" name="durum" value="1" /> </div> </div> <div class="form-group row"> <label class="control-label text-right col-md-3" for="katAdi" style="margin-top: 9px; margin-bottom: 10px; font-weight: 600">Tablo Başlığı</label> <div class="col-md-6"> <input type="text" name="baslik" required class="form-control" id="katAdi"> </div> </div> <div class="form-group row"> <label class="control-label text-right col-md-3" for="siraArea" style="margin-top: 9px; margin-bottom: 10px; font-weight: 600">Tablo Sırası</label> <div class="col-md-1"> <input type="number" name="sira" required class="form-control" id="siraArea" value="<?=$Siralama->rowCount()+1;?>" min=1 oninput="validity.valid||(value='');"> </div> </div> <div class="form-group row"> <label class="control-label text-right col-md-3" for="fiat" style="margin-top: 9px; margin-bottom: 10px; font-weight: 600"><i class="fa fa-info-circle" data-toggle="tooltip" data-placement="left" title="Boş bırakırsanız ödeme planlaması çıkmaz"></i> Fiyat</label> <div class="col-md-3"> <input type="text" name="fiyat" class="form-control" id="fiat" placeholder="Örn : 49.99" > </div> </div> <div class="form-group row"> <label class="control-label text-right col-md-3" for="odemePlan" style="margin-top: 9px; margin-bottom: 10px; font-weight: 600">Ödeme Planı</label> <div class="col-md-3"> <input type="text" name="odeme_date" class="form-control" id="odemePlan" placeholder="Örn : AYLIK" > </div> </div> <div class="form-group row"> <label class="control-label text-right col-md-3" for="buyLink" style="margin-top: 9px; margin-bottom: 10px; font-weight: 600">Satın Alma Linki</label> <div class="col-md-6"> <input type="text" name="url" class="form-control" id="buyLink" placeholder="http://" > </div> </div> <div class="form-group row"> <label class="control-label text-right col-md-3" for="buyLink" style="margin-top: 9px; margin-bottom: 10px; font-weight: 600">İkon</label> <div class="col-md-6"> <select class="form-control awesome-select" name="icon" id="icons" required> <?php include 'support/panel_parts/icon.php'?> </select> </div> </div> <div class="form-group row"> <label class="control-label text-right col-md-3" for="tavSiye" style="margin-top: 7px; margin-bottom: 10px; font-weight: 600">Tavsiye Edilen</label> <div class="col-md-6"> <input type='hidden' value='0' name='tavsiye'> <input type="checkbox" id="tavSiye" class="js-switch" data-color="#f62d51" name="tavsiye" value="1" /> </div> </div> <div class="form-actions"> <button type="submit" class="btn btn-success" name="pricingekle"> <i class="fa fa-save"></i> Kaydet </button> </div> </form> </div> </div> </div> </div> </div>
💾 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