PHP ver gevorderde |
|
ik gebruik op mijn site verschillende designs (leden kunne kiezen), voor ieder design heb ik andere smilies.
dit is mijn code
function ubb_smiley($bericht) {
$map = "images/$design/smileys";
$bericht = str_replace(":)", "<img src=\"$map/blij.gif\" alt=\"\">", $bericht);
$bericht = str_replace(":(", "<img src=\"$map/droevig.gif\" alt=\"\">", $bericht);
$bericht = str_replace(":s", "<img src=\"$map/verward.gif\" alt=\"\">", $bericht);
$bericht = str_replace(":P", "<img src=\"$map/tong.gif\" alt=\"\">", $bericht);
$bericht = str_replace(":D", "<img src=\"$map/tanden.gif\" alt=\"\">", $bericht);
$bericht = str_replace(";)", "<img src=\"$map/knipoog.gif\" alt=\"\">", $bericht);
$bericht = str_replace(":omg:", "<img src=\"$map/omg.gif\" alt=\"\">", $bericht);
$bericht = str_replace(":cool:", "<img src=\"$map/cool.gif\" alt=\"\">", $bericht);
return $bericht;
}
function ubb_smiley($bericht) { $map = "images/$design/smileys"; $bericht = str_replace(":)", "<img src=\"$map/blij.gif\" alt=\"\">", $bericht); $bericht = str_replace(":(", "<img src=\"$map/droevig.gif\" alt=\"\">", $bericht); $bericht = str_replace(":s", "<img src=\"$map/verward.gif\" alt=\"\">", $bericht); $bericht = str_replace(":P", "<img src=\"$map/tong.gif\" alt=\"\">", $bericht); $bericht = str_replace(":D", "<img src=\"$map/tanden.gif\" alt=\"\">", $bericht); $bericht = str_replace(";)", "<img src=\"$map/knipoog.gif\" alt=\"\">", $bericht); $bericht = str_replace(":omg:", "<img src=\"$map/omg.gif\" alt=\"\">", $bericht); $bericht = str_replace(":cool:", "<img src=\"$map/cool.gif\" alt=\"\">", $bericht); return $bericht; }
maar hij geeft undefined design (maar het is 100% gedefineerd,want anders waren de andere afbeeldinge ook niet zichtbaar.
|