You'll want to use the str_replace function to replace the smiley with the image, atm you're not replacing anything, heh.
PHP Code:
$newString = str_replace(":)", "<img src=\"smileys/lol.gif\" alt=\":)\" />", $oldString);
// New string is when the smilies are replaced, Old string is the previous posted string with ":)"