Jump to content

Hydrian

Members
  • Posts

    57
  • Joined

  • Last visited

    Never

Everything posted by Hydrian

  1. What i want to do is have when a user types a emote such as it comes up as the emote image. Is there any way of doing that?
  2. Ive made a chat room and i am looking to add emotes, but everything ive looked at dosent provide me with everything. If anyone can help me with this that would be great. This is the script i have so far. If you can help me make it so that when i type those :/) or :/D it makes the chat but instead of having the :/D or :/) it has the . function Smilify(&$subject) { $smilies = array( ':|' => 'mellow', ':-|' => 'mellow', ':-o' => 'ohmy', ':-O' => 'ohmy', '' => 'ohmy', '' => 'ohmy', '' => 'wink', ';-)' => 'wink', '' => 'tongue', ':-p' => 'tongue', '' => 'tongue', ':-P' => 'tongue', '' => 'biggrin', ':-D' => 'biggrin', '' => 'cool', '8-)' => 'cool', '' => 'smile', ':-)' => 'smile', '' => 'sad', ':-(' => 'sad', ); $sizes = array( 'biggrin' => 18, 'cool' => 20, 'haha' => 20, 'mellow' => 20, 'ohmy' => 20, 'sad' => 20, 'smile' => 18, 'tongue' => 20, 'wink' => 20, ); $replace = array(); foreach ($smilies as $smiley => $imgName) { $size = $sizes[$imgName]; array_push($replace, '<img src="imgs/'.$imgName.'.gif" alt="'.$smiley.'" width="'.$size.'" height="'.$size.'" />'); } $subject = str_replace(array_keys($smilies), $replace, $subject); }
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.