Well anyway here is the code. Do not hasitate to ask if smth goes wrong:
First create such form:
<FORM ENCTYPE="multipart/form-data" ACTION="handler.php" METHOD=POST>
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000000">
<INPUT NAME="dbfile" TYPE="file">
<INPUT TYPE="submit" VALUE="Îòïðàâèòü">/td>
</FORM>
Now create handler for this form named like you point it in the action property (handler.php)
<?php
echo "You've just uploaded file size of which is<font color=red><b>$dbfile_size</b> </font> bite<br><br>
Local Name:<font color=red><b>$dbfile_name </b></font><br><br>
At our server it was written like: <font color=red><b>$dbfile</b></font> <br><br> ";
?>
And so on,
further you can handle this file the way you need.
Note, that the variable storing filename is the same one you named in the form, and variable, storing filesize is the same one you named in the form + (_size)
Luck,
ZBoris