HTML Code:
<form enctype="multipart/form-data" action="upload.php" method="POST">
Please choose a file: <input name="uploaded" type="file" /><br />
<input type="submit" value="Upload" />
</form>
you can access the file information on upload.php with the
$_FILES array. again, not sure what you want to do with the files but depending on that, your php code may vary.