I have an upload file form in html:
Code: Select all
<form method="POST" enctype="multipart/form-data" action="upload.php">
<table border="0" width="100%" cellspacing="0" cellpadding="0" class="detailTable">
<tr align="right" >
<td style="padding-top: 10px;padding-right: 5px;">
<input type="hidden" name="MAX_FILE_SIZE" value="2097152" />
<b>Insert file:</b> <input type="file" name="picturefile" />
</td>
</tr>
<tr align="right">
<td style="padding-top: 10px;padding-right: 5px; padding-bottom: 5px;">
<input type="submit" value="Submit" />
</td>
</tr>
</form>
</table>
but in other browsers this works...