I am trying to implement something similar to bbcode (emoticons) from phpbb3.
The user in the place where there should be a smiley, fills the text of the form :sm_3:
you need to subsequently replace it with images/smile/1.gif
, I try this:
for ($i = 0; $i < 50; $i++) { $z[] = "/:(sm_$i):/"; }; $message = preg_replace($z, '<img src="{SMILIES_PATH}/$1.gif" / >', $message);
but I get the result.
<img src="images/smile/:sm_3:.gif" / >