islem.php
if (isset($_POST['kresimduzenle'])) {
if($_FILES['kullanici_resim']["size"] > 0) {
$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");
$duzenle=$db->prepare("UPDATE kullanici SET
kullanici_resim=:resim
WHERE kullanici_id={$_POST['kullanici_id']}");
$update=$duzenle->execute(array(
'resim' => $refimgyol
));
$kullanici_id=$_POST['kullanici_id'];
if ($update) {
$resimsilunlink=$_POST['eski_yol'];
unlink("../../$resimsilunlink");
Header("Location:../production/kullanici-duzenle.php?kullanici_id=$kullanici_id&durum=ok");
} else {
Header("Location:../production/kullanici-duzenle.php");
}
}
}
kullanici resim düzenle.php