$kaydet = $db->prepare("INSERT INTO items set title = ? , website = ? , email = ? , phone = ? , video = ? , location = ? , category = ? , city = ? , longitude = ? , latitude = ? , description = ? ");
$kaydet->execute(array($title,$website,$email,$phone,$video,$location,$category,$city,$longitude,$latitude,$description));
$kaydet = $db->prepare("INSERT INTO tags set tag = ? , item_id = ? ");
$kaydet->execute(array($tag,$item_id));


Bu alan da tags kategorisini ayrdım items e eklenen ürünlerin etiketleri tags tablousunda ayrı yerde olacak . fakat items e eklenen son ürünün id yi tags tablosuna yazdırmam lazım .

kodlarda etiket ve ürün ekleyebılıyorum . etiket tags kategorisine ürün items kategorisine gidiyor . lakin tags tablosunda item_id alanı null olarak kalıyor doğal olarak . oraya items e eklenen ürünün id sini yazdırmam gerekiyor .

item_id = ? soru işareti yerine eklenen ürünün id yi nasıl çekerim .

şimdiden teşekkürler