You are here :Ngtlive(breadcrumbs are unavailable)

Downloads

/*$files = Array();
$path = $_SERVER['DOCUMENT_ROOT']."/wp-admin/upload/";
$dh = opendir($path);
while ($file = readdir($dh)) {
if (!is_dir($path."/".$file)) {
if (is_file($path."/".$file)) {
if (($file!=".") && ($file!="..")) {
$files[] = $file;
}
}
}
}
closedir($dh);
foreach($files as $index=>$file) {
?>