include("../_initall.php");
?>
Personal Stash
if($_POST[file]){
echo "Getting File $_POST[file] (will take a little while to download)
";
$command="wget \"$_POST[file]\"";
echo system($command);
}
$tst=scan_directory_recursively(".");
echo "File List
";
$r=rand(1111,9999);
echo "Click to Refresh
";
foreach($tst as $key=>$val){
if($val[name]!="index.php" && $val[name]!="error_log"){
echo "$val[name] ($val[size] bytes)
";
}
}
?>