<?
$image_list = array();
$dir = opendir( "animoticons/" );
if( $dir ) {
while( false !== ($file = readdir($dir))) {
if( eregi("^[a-z0-9_\-]*\.(jpg|png|gif)$", $file) ) $image_list[] = $file;
}
sort( $image_list, SORT_STRING );
}
reset($image_list);
while( $file = each($image_list) ) {
echo $file[1]."\n";
}
?> arkadaşlar bu kodu asp ye cevirebilecek olan biri yardım etsin lütfen cok lazım.