Ich habe ein Problem mit den Sonderzeichen im Tittel des Thread's. Sobald ein Member ein solches eingibt (z.B. ') dann interprtiert die Datei foren.php dies nicht mehr richtig - das heisst, es wird gleich gar nichts mehr auf den benachbarten Internetseiten angezeigt.
Ich hatte das Problem früher schon einmal und da habe ich es mit dem folgenden String gelöst (rot markiert) - nun funktioniert es aber plötzlich nicht mehr... Warum? Kann mir das jemand erklären, resp. hat jemand eine Lösung dafür?
Vielen herzlichen Dank.
<?
if ((!isset($HTTP_GET_VARS['anz'])) || (!is_numeric($HTTP_GET_VARS['anz'])) || ($HTTP_GET_VARS['anz'] > 52) || ($HTTP_GET_VARS['anz'] < 1)){
$an = 5;
} else {
$an = $HTTP_GET_VARS['anz'];
}
$a = 0;
$fp = fopen("http://www.gugge-forum.ch/rdf.php?count=$an", "r");
$fcontents = fread($fp, 65535);
fclose($fp);
$fcontents = str_replace ("</item>", "", $fcontents);
$fcontents = str_replace ("</link>", "", $fcontents);
$splices = explode ("<item>", $fcontents);
for ($i = 1; $i < count($splices); $i++){
$link = explode("<link>",$splices[$i]);
$link[1] = strip_tags($link[1]);
$headline = str_replace ("<title>", "<a target=\"_blank\" href=\"" . trim($link[1]) . "\">", $splices[$i]);
$headline = str_replace ("</title>", "</a>", $headline);
$headline = explode ("<link>", $headline);
$headline = trim($headline[0]);
$headline = str_replace("'", "\\'", $headline);
echo "document.write('$headline'+'<br /><br />');\n";
if ($i >= $an) break;
}
?>
herzliche Grüsse
Martin