Posted by Andre Frashek on 09/26/06 14:06
Hi,
another problem you might have here is your <form> tag.
Normally you use:
<form action="getFiles.php" enctype="multipart/form-data" method="post">
if you create an input field for a file upload. Without the enctype
declaration it might not work.
Andre
Glenn Coyle wrote:
> <form action="getFiles.php" method="get"><br>
> Type (or select) Filename: <input type="file" name="uploadFile">
> <input type="hidden" name="MAX_FILE_SIZE" value="25000" />
> <input type="submit" value="Upload File">
> </form>
[Back to original message]
|