Log in

View Full Version : Messenger Wink/Emotioncon Gallery



BarnOwl
02-03-2009, 05:38 PM
Looking for code to display Messenger Winks/Emotioncons on a web page. My goal is to build a Messenger Wink/Emotioncon gallery to display my collection. Do not need full code, just "nudge in the right direction".

Thanks;)

Nile
02-04-2009, 03:53 AM
What do you mean? Do you mean replace : ) with :)?


<?php
$smilies = array(':)', ';)' ,':o' ,'8)');
$images = array('Happy', 'Wink', 'Suprised', 'Cool');
if(isset($_POST['submit'])){
$_POST['text'] = str_replace($smilies, $images, $_POST['text']);
echo $_POST['text'];
}
?>
<form action="" method="post"><input type="text" name="text" /><input type="submit" name="submit" /></form>