Vixo
vpnscript.net
Kullanıcı
-
Üyelik
09.02.2014
-
Yaş/Cinsiyet
29 / E
-
Meslek
Web Yazılım
-
Konum
Düzce
-
Ad Soyad
M** K**
-
Mesajlar
237
-
Beğeniler
29 / 57
-
Ticaret
1, (%100)
'password' => $_POST['kullanici_password'] olan kısmı 'password' => MD5($_POST['kullanici_password']) yapmalısınız.
if (isset($_POST['Kullaniciekle'])) {
$uploads_dir = '../../dimg/kullanici';
@$tmp_name = $_FILES['kullanici_resim']["tmp_name"];
@$name = $_FILES['kullanici_resim']["name"];
$benzersizsayi4=rand(20000,32000);
$refimgyol=substr($uploads_dir, 6)."/".$benzersizsayi4.$name;
@move_uploaded_file($tmp_name, "$uploads_dir/$benzersizsayi4$name");
$kullanici_password=md5($_POST['kullanici_password']);
$kaydet=$db->prepare("INSERT INTO kullanici SET
kullanici_ad=:ad,
kullanici_adsoyad=:adsoyad,
kullanici_tel=:tel,
kullanici_mail=:mail,
kullanici_password=:password,
kullanici_resim=:resim");
$insert=$kaydet->execute(array(
'ad' => $_POST['kullanici_ad'],
'adsoyad' => $_POST['kullanici_adsoyad'],
'tel' => $_POST['kullanici_tel'],
'mail' => $_POST['kullanici_mail'],
'password' => MD5($_POST['kullanici_password']),
'resim' => $refimgyol
));
if ($insert) {
Header("Location:../production/kullanicilar.php?durum=ok");
} else {
Header("Location:../production/kullanicilar.php?durum=no");
}
}
1 kişi bu mesajı beğendi.