Hi,
Ich habe ein Problem!
ich habe ein Formular welches hiermit einen Eintrag in meine MYSQL-Tabelle vornehmen soll...
dabei bekomme ich immer die Fehlermeldung:
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 ''Titel', 'Datum', 'Inhalt') VALUES ('test', NOW(), 'test2')' at line 2
bitte helft mir
Grüße
eure Akali
Ich habe ein Problem!
ich habe ein Formular welches hiermit einen Eintrag in meine MYSQL-Tabelle vornehmen soll...
PHP:
<?
error_reporting(E_ALL);
echo $_POST['titel']."<br>";
echo $_POST['inhalt'];
mysql_connect("localhost", "XXXXX", "XXXXXX") or die("Keine Verbindung möglich: " . mysql_error());
mysql_select_db("dbname");
if ($_POST['submit'])
{
$INSERT = "INSERT INTO News (
'Titel',
'Datum',
'Inhalt')
VALUES ('".$_POST['titel']."', NOW(), '".$_POST['inhalt']."')";
// echo $INSERT."<br>";
$updaten = mysql_query($INSERT) or die(mysql_error());
if (!$updaten)
echo "Fehler aufgetreten!";
else
{
echo "Eintrag erfolgreich";
}
}
?>
dabei bekomme ich immer die Fehlermeldung:
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 ''Titel', 'Datum', 'Inhalt') VALUES ('test', NOW(), 'test2')' at line 2
bitte helft mir
Grüße
eure Akali