<html>

<head>
<title>Upload File</title>
<meta name="robots" content="noindex,nofollow">
<meta name="description" content="Upload file">
</head>

<body>

<h1>Upload File</h1>

<!-- The data encoding type, enctype, MUST be specified as below -->
<form enctype="multipart/form-data" action="upload.php" method="POST">
<!-- Name of input element determines name in $_FILES array -->
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
</form>

The file can not be more than 8 MB in size.

</body>

</html>