<html>
<head>
<!-- Start title -->
<title>Indexator</title>
<!-- End title -->
<!-- Start style -->
<style> body { font-family: Verdana; font-size: 11px; }
</style>
<!-- End style -->
</head>
<body>
<!-- Indexator by Svetoslav Genov (Inventive) -->
<!-- Start date -->
<b>Start</b> : <?php echo date("d.m.y @ G:i:s",time()); $start = date("s"); ?>
<!-- End start date -->
<!-- Start space -->
<br><br>
<!-- End space -->
<!-- Start files -->
<?php $dir = "."; // Directory
prelisti($dir); // Start function "prelisti" function prelisti($dir) { // Function "prelisti" $handle = opendir($dir); // $handle is for open dir while ($file = readdir($handle)) { // While looper ($file = read dir) if ($file == "." || $file == "..") { } // If $file is . or .. else { // Else if (is_file($dir."/".$file)) { add_file($dir."/".$file); } // If is file if (is_dir($dir."/".$file)) { prelisti($dir."/".$file); } // If is dir }
}
} function add_file($dir) { echo $dir."<br>n"; } // Function "add_file"
?>
<!-- End files -->
<br>
<!-- Start end date -->
<b>End</b> : <?php echo date("d.m.y @ G:i:s",time()); $end = date("s"); ?>
<!-- End end date -->
<!-- Start space -->
<br>
<!-- End space -->
<!-- Start total time -->
<b>Total</b> : <?php echo $end-$start; ?> secs.
<!-- End total time -->