Veri tabanımda varsa kayıt etmesin istiyorum ama beceremedim. Kodlarım aşağıda

if (isset($_POST['arac_ekle'])) {
if ($query->rowCount()) echo 'Araç Stokta'; $arac_ekle=$db->prepare("INSERT INTO stok SET
VINNo=:VINNo
");
$ekleme=$arac_ekle->execute(array(
'VINNo' => ($_POST['VINNo'])
));
if ($ekleme) {
header("location:../index.php?durum=ok");
exit;
} else {
header("location:../index.php?durum=no");
exit;
}
exit;
}