$dir = natsort(glob($rootpath . 'smileys/user/*', GLOB_ONLYDIR));
$total_dir = count($dir);
for ($i = 0; $i < $total_dir; $i++) {
echo is_integer($i / 2) ? '<div class="list1">' : '<div class="list2">';
echo '<a href="smile.php?act=cat&id=' . preg_replace('#^' . $rootpath . 'smileys/user/#isU', '', $dir[$i], 1) . '">' . htmlentities(file_get_contents($dir[$i] . '/name.dat'), ENT_QUOTES, 'utf-8') . '</a> (' . (int)count(glob($dir[$i] . '/*.gif')) . ')</div>';
}