📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
lisans.demodesign.com.tr
📝
profile.php
← Geri Dön
<?php require 'include/header.php'; // BU YAZILIM İST SOFT BİLİŞİM HİZMETLERİNE AİTTİR // if ($_POST) { $profilequery=$db->prepare("UPDATE users SET name=:name, email=:email, phone=:phone, pass=:pass WHERE id=1"); $profileaction=$profilequery->execute(array( 'name' => $_POST['name'], 'email' => $_POST['email'], 'phone' => $_POST['phone'], 'pass' => $_POST['pass'])); if ($profileaction) { echo'<meta http-equiv="refresh" content="0;URL=profile?durum=Yes">'; } else { echo'<meta http-equiv="refresh" content="0;URL=profile?durum=Hata">'; } exit; } ?> <title>Profilim</title> <div class="main-content" bis_skin_checked="1"> <div class="page-content" bis_skin_checked="1"> <div class="container-fluid" bis_skin_checked="1"> <div class="row" bis_skin_checked="1"> <div class="col-lg-12" bis_skin_checked="1"> <div class="card" bis_skin_checked="1"> <div class="card-body" bis_skin_checked="1"> <h4 class="header-title">Profilim</h4> <p class="card-title-desc">Profil düzenleme işlemlerinizi buradan yapabilirsiniz.</p> <form class="custom-validation" action="" method="POST"> <div class="form-group" bis_skin_checked="1"> <label>Ad Soyad</label> <input type="text" class="form-control" value="<?php echo $usercek["name"]; ?>" name="name"> </div> <div class="form-group" bis_skin_checked="1"> <label>E-Mail</label> <input type="text" class="form-control" value="<?php echo $usercek["email"]; ?>" name="email"> </div> <div class="form-group" bis_skin_checked="1"> <label>Telefon Numarası</label> <input type="text" class="form-control" value="<?php echo $usercek["phone"]; ?>" name="phone"> </div> <div class="form-group" bis_skin_checked="1"> <label>Şifre</label> <input type="password" class="form-control" value="<?php echo $usercek["pass"]; ?>" name="pass"> </div> <div class="form-group mb-0" bis_skin_checked="1"> <div bis_skin_checked="1"> <button type="submit" class="btn btn-primary waves-effect waves-light mr-1"> Güncelle </button> <button type="reset" class="btn btn-secondary waves-effect"> Sıfırla </button> </div> </div> </form> </div> </div> </div> <!-- end col --> </div> <!-- end row --> </div> <!-- container-fluid --> </div> <!-- End Page-content --> <?php require 'include/footer.php'; ?>
💾 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