My script is:
<?php
require_once("class.get.files.php");
$ext = array("html");
$folder = "../";
$files = new getfiles($folder,$ext);
$list = $files->getlist();
header("Content-Type: text/plain");
print "<?xml version=\"1.0\" ?>\n";
print "<images>\n";
for ($i = 0; $i< count($list); $i++) {
print "\t<image filename=\"$list[$i]\" />\n";
}
print "</images>";
?>
It's a PHP that creats XML file.
Somehow its not finding the local directory he is in it.
You can go inside and see:
http://the-memorables.com/getimages.phpPlease help me, I am new to php.
Thanks.