0) { echo "Error: " . $_FILES["uploadedfile"]["error"] . "
"; exit(); } $dest = tempnam($tempfolder, "upload-"); move_uploaded_file($_FILES["uploadedfile"]["tmp_name"], $dest); $subject = "CCAN: code upload by '" . $_POST['email'] . "' with name " . $_FILES["uploadedfile"]["name"]; $message = "File type: ".$_FILES["uploadedfile"]["type"]."\n". "Size: ".$_FILES["uploadedfile"]["size"]."\n". "Claimed email: ".$_POST['email']."\n". "File destination: ".$dest."\n"; mail($ccanadmin, $subject, $message, "From: $frommail"); echo "
Thanks!
Stored to temporary location. Mail will be send to admin to get verification of the code."; ?>