-
Üyelik
23.09.2019
-
Yaş/Cinsiyet
35 / E
-
Meslek
Serbest
-
Konum
İstanbul Anadolu
-
Ad Soyad
M** I**
-
Mesajlar
7
-
Beğeniler
0 / 1
-
Ticaret
0, (%0)
olmuyor bi sürü denedim :) bu enson
if ( $_GET[ 'urunsil' ] == "ok" )
{
$sil = $db->prepare( "DELETE from urunler where urun_id=:urun_id" );
$kontrol = $sil->execute(
array(
'urun_id' => $_GET[ 'urun_id' ]
)
);
if ( $kontrol )
{
$resimsilunlink = $_GET[ 'urun_resim' ];
unlink( "../$resimsilunlink" );
$resimsor=$db->prepare("SELECT * from resim where urun_id=:urun_id");
$resimsor->execute(array(
'urun_id' => $_GET['urun_id']
));
while($resimcek=$resimsor->fetch(PDO::FETCH_ASSOC)) {
$resimsilunlink=$resimcek['resim_link'];
unlink("../$resimsilunlink");
}
$resimsil=$db->prepare("DELETE from resim where urun_id=:urun_id");
$resimkontrol=$resimsil->execute(array(
'urun_id' => $_GET['urun_id']
));
Header( "Location:../urunler.php?status=ok" );
}
else
{
Header( "Location:../urunler.php?status=no" );
}
}