Snake
2007-10-30 12:28:07 UTC
if ($handle = opendir('videos')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != ".."){
echo "\t\n";
}
}
closedir($handle);
}
?>
i then load the php file in flash using xmlFile.load(php script) but it just don't work. But if i try to write the file in plain xml works spectacular. SOMEBODY PLEASE HELP!! :(