Added lot of junk laying around on harvie.cz
[mirrors/Programs.git] / php / skripty / m3u_browser.php
1 <?php
2
3 function dir_m3u($dir) {
4 $files=opendir ($dir);
5 while (false!==($file = readdir($files)))
6 {
7 if ($file != "." && $file != "..")
8 {
9 echo "$dir$file\">$file</a><br />\n";
10 $num = ($num + 1);
11 }
12 }
13 closedir($files);
14 }
15
16 $dir = ".";
17 if(isset($_GET["dir"])) $dir = $_GET["dir"];
18
This page took 0.24964 seconds and 4 git commands to generate.