<h4>Kan redigeres</h4> <?php // read all php file in the current directory include ("config.inc.php"); if ($dh = opendir($current_dir)) { $files = array(); while (($file = readdir($dh)) !== false) { if (substr($file, strlen($file) - 4) == '.php' OR '.PHP' and ($file != "." && $file != "..")) { array_push($files, $file); } } closedir($dh); }
// Sort the files and display sort($files); echo "<form action=\"../admin/edit.php\" method=\"GET\"><select name=\"filnavn\"style=\"font-size : 6px\>"; foreach ($files as $file) { $title = Title($file); echo "<option value=\"$file\" title=\"$title\">$title</option>"; } echo "</select><input type=\"submit\" value=\"Gå til siden\"></form>";
// Function to get a human readable title from the filename function Title($filename) { $title = substr($filename, 0, strlen($filename) - 4); $title = str_replace('_', ' ', $title); $title = str_replace('-', ' ', $title); $title = ucwords($title); return $title; } ?>
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.