I have created a registration form, that I need users to be able to attach their resume to upload to the database. The form works fine, except for the file upload portion . . . I know with an email form - the server would have to allow for anonymous file upload - is this still the case with PHP? Here is my code, maybe that is the problem
<td><div align="left" class="style11">Attach Resume: </div></td>
<td><div align="left">
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
<input name="resume" type="file" id="resume">
thanks for any help you can offer - do I need to post more info?