Hallo!
Vorneweg, ich habe die Suche benutzt, konnte aber keine Lösung finden
Folgender SQL-Insert ...
...liefert diese Fehlermeldung...
HIer die Tabellenstruktur...
Kann mir jemand helfen?
Vorneweg, ich habe die Suche benutzt, konnte aber keine Lösung finden
Folgender SQL-Insert ...
PHP:
$sql = "INSERT INTO content (`ID`, `link`, `headline`, `text`, `category`, `date`)
VALUES (``, `".addslashes(htmlspecialchars($HTTP_POST_VARS['link']))."`,
`".addslashes(htmlspecialchars($HTTP_POST_VARS['headline']))."`,
`".addslashes(htmlspecialchars($HTTP_POST_VARS['text']))."`,
`".$HTTP_POST_VARS['category']."`,
`".addslashes(htmlspecialchars($HTTP_POST_VARS['date']))."`)";
...liefert diese Fehlermeldung...
Unknown column '' in 'field list'
HIer die Tabellenstruktur...
Code:
CREATE TABLE `content` (
`ID` int(11) NOT NULL auto_increment,
`link` text NOT NULL,
`headline` text NOT NULL,
`text` text NOT NULL,
`category` text NOT NULL,
`date` text NOT NULL,
PRIMARY KEY (`ID`)
) TYPE=MyISAM AUTO_INCREMENT=2 ; (
Kann mir jemand helfen?