this is weird, I have form and on this form three file uploads
and submit button, when i change the button to image (so it looks better than this old thing on my website) it does not upload the files
The button however works 100%, am i missing something here?
<form name="newad" method="post" enctype="multipart/form-data" action="">
<table>
<tr>
<td height="120"><p>
<input type="file" name="image1">
</p>
<p>
<input type="file" name="image2">
</p>
<p>
<input type="file" name="image3">
</p></td>
</tr>
<tr>
<td><input name="Submit" type="image" value="Upload image" src="images/button_sub2.png"></td>
</tr>
<tr>
<td><input name="Submit" type="submit" value="Upload image"></td>
</tr>
</table>
</form>
i dont want to use the normal button, i already did the website in iamge buttons, why does it not work though ?