From 247f5d615539784c46b5c7c5b35b6ee348e04151 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Fri, 4 May 2012 09:48:27 -0700 Subject: initial commit --- main.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 main.php (limited to 'main.php') diff --git a/main.php b/main.php new file mode 100644 index 0000000..b7e1fe0 --- /dev/null +++ b/main.php @@ -0,0 +1,19 @@ +"; +$files = glob('*'); +sort($files, SORT_NUMERIC); +foreach ($files as $file) { + if (is_dir($file) && (substr($file,0,1)!='.')) { + echo "
  • "; + if (is_numeric($file)) { + echo "Issue $file"; + } else { + echo "$file issue"; + } + echo "
  • "; + } +} +closedir($dh); +echo ""; + -- cgit v1.2.3