Free web development scripts for the webmasterDevelopment Scripts

 Site Navigation
 o Development Scripts
 o Text Only Edition
 o PHP.net News
 o Tutorials
 o Register an account
 o New entries this week
 o Affiliates/Links
 o Contact Us
 o About us
 o Advanced Search

 Browse Path
 o 2 users online
 o Most users online: 67
 o Home
  o PHP
   o Image and Graphics
    o Script

 Member Login
User Name
Password

 Standards
Valid XHTML 1.0!
Valid 
CSS!

 Recommended Links
 o PHP Freaks
 o Designer Baby Clothes
 o Advertise Here Make Money
 o Free Wedding Websites
 o designplace
 o Wedding Vendor Directory
 o devnet
 o Open Source Design
 o OxyScripts

Convert Text Emoticons (Smilies) to Images (Rated 4)

Description:

Use this as a function to convert :) style smilies into little image ones. You could use this on a shoutbox or wherever you want to show your smilies :)

Posted by Jeb. on Tutorial Forums

Code starts here


<?PHP
// Written by Jeb.
$smileys = array(
':)' => 'smile.gif',
':(' => 'sigh.gif',
':D' => 'biggrin.gif',
':o' => 'omigosh.gif',
':p' => 'tongue.gif',
';)' => 'wink.gif');

$text = "Hi, this is my smiley string :). Isn't it cool? :D I thought so too. :p";
foreach(
$smileys as $smiley=>$image) {
$text = str_replace($smiley, '<img src="images/'.$image.'">', $text);
}

echo
$text;
?>

Last Edited: March 12, 2003, 5:01 pm


Submitted by Devscripts on 12-03-2003 17:01


Rate This Script

User Contributed Comments

Registered Members login
© Copyright 2003 - Devscripts.net