<?php
$dir = "data/";
if ($handle = opendir($dir))
{
while (false !== ($files = readdir($handle)))
{
if ($files != "." && $files != "..")
{
echo $files;
}
}
}
?>
$dir = "data/";
if ($handle = opendir($dir))
{
while (false !== ($files = readdir($handle)))
{
if ($files != "." && $files != "..")
{
echo $files;
}
}
}
?>
0 komentar:
Post a Comment