It's free and you have access to premium codes!
Welcome back! Please login to your account.
Don't worry, we'll send you a message to help you to recover your acount.
Please check your email for instructions to activate your account.
Written by 14 December 2012
If you want to make a forum, chat-room or similar scripts, you'll need to add some smilies effects. This code shows how to convert a code to a special smiley. Download the full package from the attachment and Enjoy!
<!-- this script is provided by https://www.phpfreecode.com coded by: Kerixa Inc. -->
<!-- This Script is from www.hawkee.com, found at www.phpfreecode.com-->
<form action="" method="post">
<table align="center" style="width: 359px; height: 81px;border: 2px dashed #000066;">
<tr>
<td style="background-color: #DDFFFF;width: 77px; text-align: center;">
Text<br>&<br>Smilies :</td>
<td style="background-color: #DDFFFF;width: 112px">
<textarea name="text" style="width: 282px; height: 86px">
<?php
if (!isset($_POST['Submit'])){
?>
Hi :-)
How are you? B-)
Are you sad? :-(
Are you surprised? :-O
Take it easy :-D
<?php } else echo $_POST['text'] ?>
</textarea></td>
</tr>
<tr style="text-align: center">
<td style="width: 77px"> </td>
<td style="width: 112px; text-align: left;">
<input name="Submit" style="width: 133px; height: 29px;" type="submit" value="Convert"></td>
</tr>
</table>
</form>
<?php if (isset($_POST['Submit'])){ ?>
<table align="center" style="width: 359px; height: 81px;border: 2px dashed #000066;">
<tr>
<td style="text-align: left;">
<?php
$sm = array(
':-)' => 'happy.jpg',
':-O' => 'suprise.jpg',
':-(' => 'sad.jpg',
':-D' => 'grin.jpg',
'B-)' => 'grin.jpg'
);
$text=$_POST['text'];
foreach($sm as $smiley => $img){
$text = str_replace($smiley, "<img src='smilies/$img' />", $text);
}
echo "<pre>$text</pre>";
?>
</td>
</tr>
</table>
<?php } ?>
<div style="text-align: center">
<br>
<font face="Tahoma"><span style="font-size: 8pt; text-decoration: none"><a target="_blank" href="http://www.phpfreecode.com/">PHP Free Code</a></span></font></div>
<a target='_blank' href='https://www.phpfreecode.com' style='font-size: 8pt; text-decoration: none'>Php Best Codes</a>
Comments
Here you can leave us commments. Let us know what you think about this code tutorial!