1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
|
<?php
$dir_handle = opendir("./../smilies/");
while($files = readdir($dir_handle)) {
$substr = explode(".", $files);
switch($substr[1]) {
case "jpg" :
$imgfile[] = $files;
break;
case "gif" :
$imgfile[] = $files;
break;
case "png" :
$imgfile[] = $files;
break;
}
}
?>
<table width="600px" cellpadding="5px" cellspacing="5px" border="0">
<?php
for ($i=0; $i<count($imgfile); $i++) {
?>
<tr>
<td style="border-bottom: 1px dashed blue; border-right: 1px dashed blue;"><img src="http://www.tobyatwork.de/foren/smilies/<?php echo $imgfile[$i]; ?>" /></td>
<td style="border-bottom: 1px dashed blue; font: normal normal normal 0.7em/1.2em 'lucida console' sans-serif;">[img]http://www.tobyatwork.de/foren/smilies/<?php echo $imgfile[$i]; ?>[/img]</td>
</tr>
<?php
}
?>
</table> |