The below code is included on and upload page I have, it work perfectly in
IE but for some reason the upload button doesn't show up in Firefox, any
idea?
<form action="upload. php" method="post">
<LEGEND>Selec t the number of files to upload</LEGEND>
<br><br><sele ct name='num'>
<?php
for($i = 1; $i <= 20; $i++)
{
echo "<option value=".$i.">". $i."</option>";
}
?>
<input type="Submit" value="Upload Files">
</form>
IE but for some reason the upload button doesn't show up in Firefox, any
idea?
<form action="upload. php" method="post">
<LEGEND>Selec t the number of files to upload</LEGEND>
<br><br><sele ct name='num'>
<?php
for($i = 1; $i <= 20; $i++)
{
echo "<option value=".$i.">". $i."</option>";
}
?>
<input type="Submit" value="Upload Files">
</form>
Comment