if(isset($_POST['yaziekle'])) {
$yazisor=$db->prepare("SELECT * FROM yazilar where kullanici_id=:id and kullanici_idsent=:idsent");
$yazisor->execute(array(
'id' => $_POST['kullanici_id'],
'idsent' => $_POST['kullanici_idsent']
));
$sor=$yazisor->rowCount();
if (1>$sor) {
$ekle=$db->prepare("INSERT INTO yazilar SET
kullanici_id=:kullanici_id,
kullanici_idsent=:kullanici_idsent,
yazi_text=:yazi_text");
$kaydet=$ekle->execute(array(
'kullanici_id' => $_POST['kullanici_id'],
'kullanici_idsent' => $_POST['kullanici_idsent'],
'yazi_text' => $_POST['yazi_text']));
if ($kaydet) {
header("Location:../yazilar.php?durum=ok");
}
else {
header("Location:../yazilar.php?durum=no");
}
}else{
header("Location:../yazilar.php?durum=multisend");
}
}
bu şekilde hallettim