hi all,
i had a image upload option where i can upload images.Now how do i select multiple files and upload them...
<form name="upload" enctype="multipart/form-data" action="fileupload.php" method="post">
<table>
<tr>
<td>
Upload Images: <input type="file" name="imageupload">
</td>
<td><input type="submit" name="submit" value="Submit"></td>
</tr>
</table>
</form>
when i click browse button i can select only one image,but i need to select multiple images at one time.can any one help me...
thank u