📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
makalesatisscripti.demodesign.com.tr
/
system
/
ajax
📝
profil.php
← Geri Dön
<?php include ('../../config.php'); include ('../inc/sitedata.php'); $Register['Unexpected'] = array( 'Code' => 999, 'Text' => 'Beklenmeyen Hata' ); $Register['mustFilled'] = array( 'Code' => 999, 'Text' => 'Şifre Alanını Boş Bırakmayınız' ); $Register['krktrs'] = array( 'Code' => 999, 'Text' => 'Şifreniz ş,ç,i,ğ... İçeremez!' ); $Register['minKrk'] = array( 'Code' => 999, 'Text' => 'Şifreniz Minimum 6 Karakterden Oluşmalıdır!' ); $Register['gecerSiz'] = array( 'Code' => 999, 'Text' => 'Şifreniz Geçersiz Karakterler İçeremez!' ); $Register['Success'] = array( 'Code' => 200, 'Text' => 'Şifreniz Başarıyla Güncellendi!' ); if (!isset($_POST['passwordd'])){ Output($Register['Unexpected']); } $passwordd = $_POST['passwordd']; //SQL KORUMA if(strstr($passwordd,"'") || strstr($passwordd,"*") || strstr($passwordd,"/") || strstr($passwordd,"#") || strstr($passwordd,"$") || strstr($passwordd,"%") || strstr($passwordd,"&") || strstr($passwordd,"(") || strstr($passwordd,")")){ Output($Register['gecerSiz']); } //GİDECEĞİ URL if( $passwordd == '' ){ Output($Register['mustFilled']); } if(strstr($passwordd,"ğ") || strstr($passwordd,"Ğ") || strstr($passwordd,"ç") || strstr($passwordd,"Ç") || strstr($passwordd,"ş") || strstr($passwordd,"Ş") || strstr($passwordd,"ü") || strstr($passwordd,"Ü") || strstr($passwordd,"ö") || strstr($passwordd,"Ö") || strstr($passwordd,"ı") || strstr($passwordd,"I")){ Output($Register['krktrs']); } $kackarakter = strlen($passwordd); if($kackarakter < 6){ Output($Register['minKrk']); } $queryzz = mysqli_query($connect, "UPDATE data_users SET password = '$passwordd' WHERE id = $userid"); if ($queryzz) Output($Register['Success']) ?>
💾 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