database adın nedir birde o hata veren satırı komple yazarsan daha çok yardımcı olur herkez.
Tablo yapısı
CREATE TABLE IF NOT EXISTS `not` (
`not_id` int(11) NOT NULL auto_increment,
`not_sinifi` text collate utf8_turkish_ci NOT NULL,
`not_adi` text collate utf8_turkish_ci NOT NULL,
`not_sinavi` text collate utf8_turkish_ci NOT NULL,
`not_notu` text collate utf8_turkish_ci NOT NULL,
PRIMARY KEY (`not_id`)
) ENGINE=MyISAM
Hata veren kod kısmı
$sorgu = "insert into not (not_sinifi,not_adi,not_sinavi,not_notu) values ('$sinif', '$ogrenci', '$sinav', '$not')";