Smileys i <code> :S?
http://webtuts.dk/php.php?010101=laes&id=2 <- Problemmet er at den laver smileys i <code>, Jeg har selv prøvet at få det rettet men det virker ikke!Nogen MÅ! hjælpe!
jeg har følgende kode:
$tekst = $roe[tekst];
$ro = htmlentities($tekst);
$ro = str_replace("", "<b>", $ro);
$ro = str_replace("", "</b>", $ro);
$ro = str_replace("", "<u>", $ro);
$ro = str_replace("", "</u>", $ro);
$ro = str_replace("", "<i>", $ro);
$ro = str_replace("", "</i>", $ro);
$ro = str_replace("[img]", "<img src=\"", $ro);
$ro = str_replace("[/img]", "\">", $ro);
$ro = str_replace("[code]", "<div class=\"kode\"><code>", $ro);
$ro = str_replace("[/code]", "</code></div>", $ro);
$ro = preg_replace( "#\[link\](.+?)\[/link\]#is", "<a href=\"\\1\" target=\"_blank\">\\1</a>", $ro);
$ro = str_replace("
", "<h1>", $ro);
$ro = str_replace("
", "</h1>", $ro);$ro = str_replace("
", "<h2>", $ro);
$ro = str_replace("
", "</h2>", $ro);$ro = str_replace("
", "<h3>", $ro);
$ro = str_replace("
", "</h3>", $ro);$ro = str_replace("[h4]", "<h4>", $ro);
$ro = str_replace("[/h4]", "</h4>", $ro);
$ro = str_replace("[h5]", "<h5>", $ro);
$ro = str_replace("[/h5]", "</h5>", $ro);
$ro = str_replace(":arrow:", "<img src=\"smiley/arrow.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":badlol:", "<img src=\"smiley/badgrin.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":D", "<img src=\"smiley/biggrin.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":confused:", "<img src=\"smiley/confused.gif\" alt=\"smily\" />", $ro);
$ro = str_replace("8D", "<img src=\"smiley/cool.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":*)", "<img src=\"smiley/cry.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":doubt:", "<img src=\"smiley/doubt.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":evil:", "<img src=\"smiley/evil.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":!:", "<img src=\"smiley/exclaim.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":idea:", "<img src=\"smiley/idea.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":lol:", "<img src=\"smiley/lol.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":>:", "<img src=\"smiley/arrow.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":@", "<img src=\"smiley/mad.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":|", "<img src=\"smiley/neutral.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":P", "<img src=\"smiley/razz.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":?:", "<img src=\"smiley/question.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":$", "<img src=\"smiley/redface.gif\" alt=\"smily\" />", $ro);
$ro = str_replace("8)", "<img src=\"smiley/rolleyes.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":(", "<img src=\"smiley/sad.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":wow:", "<img src=\"smiley/shock.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":)", "<img src=\"smiley/smile.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(":O", "<img src=\"smiley/surprised.gif\" alt=\"smily\" />", $ro);
$ro = str_replace(";)", "<img src=\"smiley/wink.gif\" alt=\"smily\" />", $ro);
$eg = $ro;
