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

Server Ip : 172.67.216.244




Filename/home/cuneytsener53/spor1.snrsoft.com.tr/trex/sube-duzenle.php
Size3.2 kb
Permissionrw-r--r--
Owner
Create time02-Mar-2025 05:46
Last modified21-Nov-2021 07:25
Last accessed05-Apr-2025 09:55
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
include 'header.php';
include 'topbar.php';
include 'sidebar.php';
$sssedit=$db->prepare("SELECT * from sube where sube_id=:sube_id");
$sssedit->execute(array(
'sube_id' => $_GET['sube_id']
));
$ssswrite=$sssedit->fetch(PDO::FETCH_ASSOC);

?>
<!-- ============================================================== -->
<!-- Content Start -->
<!-- ============================================================== -->
<section class="main-content container">
<div class="page-header">
<h2>Şube İş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="sube.php" class="btn btn-warning btn-icon"><i class="fa fa-reply"></i>Geri Dön</a>
</div>
Şube Bilgisi Düzenle
</div>
<div class="card-block">

<form method="POST" action="controller/function.php" class="form-horizontal">
<div class="form-group">
<input type="hidden" name="sube_id" value="<?php echo $ssswrite['sube_id']; ?>">
</div>
<div class="form-group">
<label>Şube Adı</label>
<input type="text" name="sube_ad" value="<?php echo $ssswrite['sube_ad']; ?>" class="form-control">
</div>
<div class="form-group">
<label for="ayar_harita">Şube Detay</label>
<textarea style="height: 80px;" class="form-control" name="sube_detay" rows="5" id="sube_detay"><?php echo $ssswrite['sube_detay']; ?></textarea>
</div>
<div class="form-group">
<label for="ayar_harita">Şube Adres</label>
<textarea style="height: 80px;" class="form-control" name="sube_adres" rows="5" id="sube_adres"><?php echo $ssswrite['sube_adres']; ?></textarea>
</div>
<div class="form-group">
<label>Şube Tel</label>
<input type="text" name="sube_tel" value="<?php echo $ssswrite['sube_tel']; ?>" class="form-control">
</div>
<div class="form-group">
<label>Şube Mail</label>
<input type="text" name="sube_mail" value="<?php echo $ssswrite['sube_mail']; ?>" class="form-control">
</div>
<div class="form-group">
<label>Şube Site</label>
<input type="text" name="sube_site" value="<?php echo $ssswrite['sube_site']; ?>" class="form-control">
</div>
<div class="form-group">
<label>Şube İl</label>
<input type="text" name="sube_il" value="<?php echo $ssswrite['sube_il']; ?>" class="form-control">
</div>
<div class="form-group">
<label>Şube İlce</label>
<input type="text" name="sube_ilce" value="<?php echo $ssswrite['sube_ilce']; ?>" class="form-control">
</div>
<div class="form-group">
<label for="ayar_harita">Harita Kodu</label>
<textarea style="height: 100px;" class="form-control" name="sube_harita" rows="5" id="sube_harita"><?php echo htmlspecialchars($ssswrite['sube_harita']); ?></textarea>
</div>
<button style="cursor: pointer;" type="submit" name="subeduzenle" class="btn btn-success btn-icon"><i class="fa fa-floppy-o "></i>Güncelle</button>
</form>
</div>
</div>
</div>
</div>

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