Forum Moderators: mack
i know that i set up a FORM and enter all the things i want, including the BROWSE button. but is there some special code that i have to put behind that BROWSE button for it work?
<form action="filehandler.php" method="post" [b]enctype="multipart/form-data"[/b]>
...blah blah blah
<input type="file" name="file_upload" />
<input type="submit" value="Upload!" />
</form>
The only thing extra that is needed when dealing with file uploads is the enctype that is bold above.
Good luck!