MBaaboura
Neues Mitglied
[BITTE SCHLIESSEN] MySQL - Wo ist der Fehler?!
Hey HTML.de!
Bin noch nicht so gut in MySQL deshalb wollte ich mal Fragen wo in diesem "Query" der Fehler ist:
Fehlermeldung:
Hey HTML.de!
Bin noch nicht so gut in MySQL deshalb wollte ich mal Fragen wo in diesem "Query" der Fehler ist:
PHP:
<?php
mysql_connect("******","******","******");
mysql_select_db("******");
$create_comment_table = mysql_query("CREATE TABLE blab_comments
(id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
blab_id INT (11) NOT NULL,
mem_id INT (11) NOT NULL,
the_comment TEXT NOT NULL,
comment_date DATETIME,
");
if ($create_comment_table) {
$queryMsg = "Table Created!";
} else {
$queryMsg = "<p>" . mysql_error() . "</p>";
}
print $queryMsg;
?>
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 '' at line 6
Zuletzt bearbeitet: