Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.