PHP Ekle Düzgün Çalışma değil

0 Cevap php

Ben diğer bazı kodu ile birlikte benim dosyasında PHP kodu aşağıdaki satırları:

$command = "INSERT INTO inventory_items (Index, Name, Price) VALUES (NULL, 'Diamond', '3.99')";
$insertion = mysql_query($command) or die(mysql_error());
if ($insertion == FALSE)
{
 echo "Error: Insert failed.";
}
else
{
 echo "Insert successful.";
}

Bu hatayı dönen tutar:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Index, Name, Price) VALUES (NULL, 'Diamond', '3.99')' at line 1

MyAdmin MySQL istemci sürümü 5.0.91 kullanıyorum diyor. Ben yanlış ne yapıyorum? Ben sadece bunu anlamaya olamaz! Ben bir çok arama çalıştı ...

0 Cevap