Kod: Tümünü seç
<?
if ($_SESSION['_logperm'] == '1') {
echo' <tr>';
echo' <td><img src="_res/84.png" alt="1" width="8" height="8" /></td>';
echo' <td colspan="4" class="style2"><a href="_admin.php" target="new">Admin Paneli</a></td>';
echo' </tr>';
}
# burada klasör içerisindeki dosyalar indexle başlar...
$s_path = 'resimler/images';
$a_types = array ('jpg', 'gif', 'jpeg', 'png');
$a_images = array ();
$h_dir = opendir($s_path);
while ($s_file = readdir($h_dir))
{
$s_type = strtolower(substr(strrchr($s_file, '.'), 1));
if (in_array($s_type, $a_types))
array_push($a_images,"$s_path/$s_file");
}
closedir($h_dir);
sort($a_images);
echo join(' ', $a_images);
# burada klasör içerisindeki dosyaların indexlenmesi bitirilir...
?>