jetzt habe ich auch mal ein problem.....
ich habe eine tabelle.
wenn ich folgenden sql.code direkt in MySQL eingebe, wird es korrekt ausgeführt.
wenn ich jedoch das ganze mit php mache, wird es nicht korrekt gemacht.
ich erhalte dann nur diese einträge in der DB (reihenfolge alle spalten)
die 1 aus der spalte TypId übernimmt er merkwürdigerweise nicht.
wer kann mir helfen?
danke
ich habe eine tabelle.
Code:
CREATE TABLE GemBr_Content ( ContentId int(11) NOT NULL auto_increment, NaviId int(11) NOT NULL default '0', TypId int(11) NOT NULL default '0', ContentHead varchar(100) NOT NULL default '', Content text NOT NULL, ImageId int(11) NOT NULL default '0', PRIMARY KEY (ContentId) ) TYPE=MyISAM;
Code:
INSERT INTO GemBr_Content ( NaviId, TypId, ContentHead, Content) VALUES ('2', '1', 'head', 'text') ;
PHP-Code:
function GemBrAdminSaveInhalt($pageid,$contenttype,$headline,$inhalt) {
echo "$pageid,$contenttype,$headline,$inhalt"; // nur zum test
$result = mysql_query ( "INSERT INTO GemBr_Content ( NaviId, TypId, ContentHead, Content) VALUES ".
"('".$pageid."', '".$contenttyp."', '".$headline."', '".$inhalt."')" );
echo mysql_error(); // nur zum test
}
Code:
| 18 | 2 | 0 | head | text | 0 |
wer kann mir helfen?
danke
Kommentar