Voor jouw Thomas!
By: Xmoo | Date: Nov 27 2006 21:38 | Format: PHP | Expires: never | Size: 3.25 KB | Hits: 1493
- <?
- //Bestanden die niet weergegeven worden
- //Het complete path van het script
- //Check naar welke directory er gegaan moet worden
- If ($_GET[newdir]) {
- (file_exists($standpath . "/" . $_GET[newdir])) ? $standpath = $standpath . "/" . $_GET[newdir] : header("Location: ?show=files");
- }
- //Lees elke file en directory uit de geopende directory en zet deze beide een aparte array
- }
- }
- //Sorteer beide array's
- //Voeg de beide array's samen
- //Loop alle files en directory's afzonderlijk na
- $counter = 0;
- While ($totaldir[$counter]) {
- //Check of het een directory of een file is
- $ftype = "Directory";
- $link = $_SERVER['PHP_SELF'] . "?show=files&newdir=" . $_GET[newdir] . "/" . $totaldir[$counter];
- $fsize = "";
- } Else {
- //Bereken bestandsgroote in Bytes, KiloBytes, MegaBytes of GigaBytes
- If ($fsize < 1024) $fsize .= " B";
- //Maak een HTML link
- $ftype = "File";
- }
- ($_GET[newdir]) ? $location = $_GET[newdir] : $location = "/";
- //Maak de HTML source
- $files .= "
- <tr>
- <td class="type">" . $ftype . "</td>
- <td class="path">" . $location . "</td>
- <td class="size">" . $fsize . "</td>
- </tr>";
- $counter++;
- }
- ?>
- <?
- //Een 'Parent Directory' link maken
- If ($_GET[newdir]) { ?>
- <tr>
- </tr>
- <?
- }
- echo $files;
- ?>
Latest pastes
1 hours ago
11 hours ago
1 days ago
2 days ago
2 days ago