cordoprod Posted March 24, 2008 Share Posted March 24, 2008 Hi. I am developing a guestbook and when they click on Sign guestbook I will make a button which says "Insert Smiley". When they click on that button a popup will open and all the smilies will appear in a table. I am storing all the smilies in a folder and in a variable which users can add their own smilies. Like this: $smilies = "tongue.gif|smile.gif|angry.gif"; and they can just seperate the smilies with | . But my problem is how to store them in that table. I only want like 6-7 smilies per row. Then I would like them to continue on a new row. Can somebody help? ??? Quote Link to comment https://forums.phpfreaks.com/topic/97586-smilies-sorting/ Share on other sites More sharing options...
MadTechie Posted March 24, 2008 Share Posted March 24, 2008 try this <?php $smilies = "tongue.gif|smile.gif|angry.gif|123|456|789|ABC|DEF|GHI"; $sArray = explode("|",$smilies); echo "<table border=\"0\">\n<tr>\n"; $c = 4; //Rows foreach($sArray as $Key => $Value) { if(!($Key % $c)) echo "</tr><tr>"; echo "<td>$Value</td>"; } if(!($Key % $c)) echo "</tr>"; echo "</table>\n"; ?> Quote Link to comment https://forums.phpfreaks.com/topic/97586-smilies-sorting/#findComment-499303 Share on other sites More sharing options...
cordoprod Posted March 24, 2008 Author Share Posted March 24, 2008 That worked. Thank you ! Quote Link to comment https://forums.phpfreaks.com/topic/97586-smilies-sorting/#findComment-499343 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.