Microhome
Erfahrenes Mitglied
Hallo ihr lieben,
ich habe ein echt witziges Problem, welches noch nie aufgetreten ist. Ich kann nämlich keine Links mehr in meiner Datenbank speichern.Wenn ich über phpmyadmin gehe funktioniert das ganze, wenn ich aber über mein PHP Script gehe fügt er keine a hrefs mehr ein, da diese wohl anscheinend Anführungszeichen enthalten. Es kommt folgender mysql Error:
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 'http://www.tutorials.de">Tutorials.de", "Rene Bartkowiak", "mod_news_1185270' at line 1
Das Script ist im Prinzip ganz einfach:
Habt ihr irgendeine Ahnung woran das liegen kann
Beste Grüße
Rene
ich habe ein echt witziges Problem, welches noch nie aufgetreten ist. Ich kann nämlich keine Links mehr in meiner Datenbank speichern.Wenn ich über phpmyadmin gehe funktioniert das ganze, wenn ich aber über mein PHP Script gehe fügt er keine a hrefs mehr ein, da diese wohl anscheinend Anführungszeichen enthalten. Es kommt folgender mysql Error:
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 'http://www.tutorials.de">Tutorials.de", "Rene Bartkowiak", "mod_news_1185270' at line 1
Das Script ist im Prinzip ganz einfach:
Code:
$titel = $_POST["titel"];
$inhalt = "<a href=\"http://www.tutorials.de\">Tutorials.de</a>";
$timenow = time();
echo "<b>News verwalten # News hinzufügen</b><br><br>";
mysql_query("INSERT INTO content VALUES (\"\", \"$titel\", \"$inhalt\", \"$cmsbenutzer\", \"mod_news_$timenow\")");
die(mysql_error());
Habt ihr irgendeine Ahnung woran das liegen kann
Beste Grüße
Rene