burakeo
Hareket Sonucun Yarısıdır
Kullanıcı
-
Üyelik
13.04.2016
-
Yaş/Cinsiyet
27 / E
-
Meslek
web
-
Konum
Ankara
-
Ad Soyad
F** B**
-
Mesajlar
918
-
Beğeniler
218 / 114
-
Ticaret
19, (%95)
md5 olarak kaydetmiyor?
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' => $_POST['kullanici_password'],
'resim' => $refimgyol
));
if ($insert) {
Header("Location:../production/kullanicilar.php?durum=ok");
} else {
Header("Location:../production/kullanicilar.php?durum=no");
}
}
1 Ayda İnternetten 4 Bin Lira Kazanmak : https://www.youtube.com/watch?v=V5ktweu_39o
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.
gokrtl
mekatronik.org
Kullanıcı
-
Üyelik
11.11.2016
-
Yaş/Cinsiyet
40 / E
-
Meslek
Özel Güvenlik Görevlisi
-
Konum
Antalya
-
Ad Soyad
G** K**
-
Mesajlar
122
-
Beğeniler
19 / 24
-
Ticaret
0, (%0)
Posttan gelen şifreyi md5 yapıp değişkene atamışsınız ama onu kullanmak yerine sql de yine posttan gelen şifreyi yazmışsınız.
www.mekatronik.org/forum
burakeo
Hareket Sonucun Yarısıdır
Kullanıcı
-
Üyelik
13.04.2016
-
Yaş/Cinsiyet
27 / E
-
Meslek
web
-
Konum
Ankara
-
Ad Soyad
F** B**
-
Mesajlar
918
-
Beğeniler
218 / 114
-
Ticaret
19, (%95)
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' => $kullanici_password,
'resim' => $refimgyol
));
if ($insert) {
Header("Location:../production/kullanicilar.php?durum=ok");
} else {
Header("Location:../production/kullanicilar.php?durum=no");
}
}
şeklinde çözmüştüm teşekkürler
1 Ayda İnternetten 4 Bin Lira Kazanmak : https://www.youtube.com/watch?v=V5ktweu_39o