include '../db.php';
if (isset($_POST['ekle'])) {
if (substr($_FILES['resim']['name'], -3)=="jpg"|| $_FILES['resim']['type']=="image/jpeg") {
$resimadi = $_FILES['resim']['name'];
$resim = explode(".", $resimadi);
$uzanti = $resim[1];
$yeni = rand(1,100000);
$yeniad = "../images/".$yeni.".".$uzanti;
echo "uzantı doğru";
if (move_uploaded_file($_FILES['resim']['tmp_name'],$yeniad)) {
$sql = $db->prepare("insert into slider(resimadi) values(?)");
$sql->execute(array($yeniad));
$hata=$sql->errorInfo();
echo empty($hata[2]) ? "Başarılı bir şekilde eklendi.": $hata[2] ;
} else {
echo "Resim yüklenemedi.";;
}
}else{
echo ' Resim uzantısını kontrol edin.
';
}
}
?>
Kodlar bu şekilde, yardımınızı bekliyorum muhteremler...