I hav built a guest book and now i want to add some smilies.. but when i use the script that someone gave me its doesnt works.. this is the script:
$smilies = array(
"🙂" => "<img src=smilies/smile.gif>"
);
foreach($smilies AS $face => $image) {
$text = str_replace($face, $image, $text);
}
When i write for e.x: <? print "🙂"; ?>
its apears as 🙂 and not as an image...
why its doesnt works? My Guest book is built with PHP & MySQL.
thanks!!! 😃