I have a really simple image upload form on my site. For some reason, when I download ieTester and use IE 8 or IE7, the Browse button for finding a file does not have text on it, nor does it open the file selection dialog.
Does anyone know why this could be? Maybe because I use the IE tester?
Here is the code for my form:
<form action="edit-profile.php" method="post" enctype="multipart/form-data">
<input name="file" id="file" type="file" />
<input type="hidden" name="uploaded" value="true" />
<input type="submit" value="Upload" />
</form>
Thanks in advance for your help.
source
share