<?
    $GLOBALS
['highlight'] = 'forum';

    include(
'include/parts/header.php');
    
    echo 
box_outside_top('Smileys''''''''''padding: 0px 0px 5px 5px;');
?>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<?
    $community_smileys 
mysql_query("SELECT * FROM community_smileys ORDER BY name");    
    while (
$community_smileys_row mysql_fetch_array($community_smileys))
    {
        echo 
box_image_top('width: 100px; height: 50px;');
        echo 
'<img src="images/smileys/' $community_smileys_row['filename'] . '" border="0" alt="" />';
        echo 
'<div style="padding: 5px 0px 0px 0px;"></div>';
        echo 
'<b>' $community_smileys_row['name'] . '</b>';
        echo 
box_image_bottom();
    }    
?>
</td>
</tr>
</table>
<?
    
echo box_outside_bottom();
    
    include(
'include/parts/footer.php');
?>