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 / teknikservis1.snrsoft.com.tr / trex /

Server Ip : 172.67.216.244




Filename/home/cuneytsener53/teknikservis1.snrsoft.com.tr/trex/bolge-ekle.php
Size4.54 kb
Permissionrw-r--r--
Owner
Create time02-Mar-2025 05:46
Last modified18-Mar-2021 07:26
Last accessed05-Apr-2025 07:33
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
include 'header.php';
include 'topbar.php';
include 'sidebar.php';
?>
<!-- ============================================================== -->
<!-- Content Start -->
<!-- ============================================================== -->
<section class="main-content container">
<div class="page-header">
<h2>Bölge İşlemleri</h2>
</div>
<div class="row">
<div class="col-sm-12">
<div class="card">
<div class="card-heading card-default">
<div class="pull-right mt-10">
<a href="bolgeler.php" class="btn btn-warning btn-icon"><i class="fa fa-reply"></i>Geri Dön</a>
</div>
Bölge Ekle
</div>
<div class="card-block">

<form method="POST" action="controller/function.php" enctype="multipart/form-data" class="form-horizontal">
<div class="form-group">
<label>Bölge Adı</label>
<input type="text" name="proje_baslik" placeholder="Bölge adı giriniz." class="form-control">
</div>
<div class="form-group">
<label>Üst Bölge Seç</label>
<select name="proje_kategori" class="form-control m-b">
<?php
$kategorisor=$db->prepare("SELECT * from kategorilerp");
$kategorisor->execute(array(0));
while ($kategoricek=$kategorisor->fetch(PDO::FETCH_ASSOC)) {
?>
<option value="<?php echo $kategoricek['kategori_id'] ?>"><?php echo $kategoricek['kategori_ad'] ?></option>
<?php } ?>
</select>
</div>
<div class="form-group">
<label>İçerik</label>
<textarea class="summernote" name="proje_icerik">İçerik giriniz</textarea>
</div>
<div class="form-group">
<label>Bölge Resim</label>
<div class="fileinput fileinput-new input-group col-md-3" data-provides="fileinput">
<div class="form-control" data-trigger="fileinput"><span class="fileinput-filename"></span></div>
<span class="input-group-addon btn btn-primary btn-file ">
<span class="fileinput-new">Yükle</span>
<span class="fileinput-exists">Değiştir</span>
<input type="file" placeholder="Resim ekle" name="proje_resim">
</span>
<a href="#" class="input-group-addon btn btn-danger hover fileinput-exists" data-dismiss="fileinput">Sil</a>
</div>
</div>
<hr>
<div class="">
<b style="color: red;">*SEO Meta Ayarları</b>
<p class="text-muted">Google başta olmak üzere tüm arama motorları sizi buraya girdiğiniz bilgiler doğrultusunda üst sıralara taşıyacaktır.</p>
</div>
<div class="form-group">
<label>Title</label>
<input type="text" name="proje_title" placeholder="Title belirtiniz" class="form-control form-control-rounded">
</div>

<div class="form-group">
<label>Description</label>
<input name="proje_descr" type="text" placeholder="Description belirtiniz" class="form-control form-control-rounded">
</div>

<div class="form-group">
<label>Keywords</label>
<input type="text" name="proje_keyword" placeholder="Keywords belirtiniz" class="form-control form-control-rounded">
<small class="text-muted">Örnek : <code>elma, armut, muz, karpuz</code></small>
</div>
<button style="cursor: pointer;" type="submit" name="bolgeekle" class="btn btn-success btn-icon"><i class="fa fa-floppy-o "></i>Kaydet</button>
</form>
</div>
</div>
</div>
</div>

<?php include 'footer.php'; ?>