Jump to content

Smilies sorting


cordoprod

Recommended Posts

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?  ???

Link to comment
https://forums.phpfreaks.com/topic/97586-smilies-sorting/
Share on other sites

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";
?>

Link to comment
https://forums.phpfreaks.com/topic/97586-smilies-sorting/#findComment-499303
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.