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![]()
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![]()
What do you mean? Do you mean replace : ) with?
PHP Code:<?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>
Jeremy | jfein.net
Bookmarks