Codice PHP:
//directory contenente le gif emoticons
$file = glob("emoticons/*.gif");
//output da personalizzare...
foreach($file as $img){
$n = basename($img, '.gif');
echo "<img src=\"$img\" alt=\"$n\" title=\"$n\" />$n
\n";
}
Codice PHP:
//directory contenente le gif emoticons
$file = glob("emoticons/*.gif");
//output da personalizzare...
foreach($file as $img){
$n = basename($img, '.gif');
echo "<img src=\"$img\" alt=\"$n\" title=\"$n\" />$n
\n";
}