How to put smiley in php
🙂
Easy... just type 🙂 ... But for a bit of fun, lets do it the long way.
<? function doSmiley() { $eyes = ':'; $smile = ')'; return $eyes.$smile; }
echo "Here's a smile! ".doSmiley(); ?>