Ich habe gerade gemerkt das wenn ich bei meinem GB und News Script ' eintippe bekomme ich einen Mysql Fehler.
Beim Kontakt Script ist es nicht so.
Hier mal den Code
PHP
<?php
......
/* text bereinigung */
$posttext = trim($_POST['posttext']);
$posttext = str_replace("<","<",$posttext);
$posttext = str_replace(">",">",$posttext);
/* ende der text bereinigung */
.....
$insert = "INSERT INTO `rem_book` ( postid, posttext, posttime, authorname, authorwebsite, authoremail, authorip, stat )
VALUES ( '$postid', '$posttext', '$posttime', '$authorname', '$authorwebsite', '$authoremail', '$authorip', '$stat' );";
mysql_query( $insert)
or die ("Fehler beim Eintragen des Beitrages!
" .mysql_error() );
......
?>
Alles anzeigen
Wieso ist das so?