I'm using this code in html
<form method="post" enctype="multipart/form-data" action="upload.php">
Select file: <input type="file" name="userfile">
<input type="submit" value="Upload"></i> </p></form>
to have a browse, and upload, that connections to a file upload.php to allow people up upload things onto my server.
HEre's what i want to do but im not sure about how to do it.
I want to have several browse input field(around 5) and then one submtit upload field that will upload all the files... I'm not sure how to do it, I tryed to just make 5 of them after it, but then it only uploads the last one.
<form method="post" enctype="multipart/form-data" action="upload.php">
Select file: <input type="file" name="userfile">
<input type="submit" value="Upload"></i> </p></form>
to have a browse, and upload, that connections to a file upload.php to allow people up upload things onto my server.
HEre's what i want to do but im not sure about how to do it.
I want to have several browse input field(around 5) and then one submtit upload field that will upload all the files... I'm not sure how to do it, I tryed to just make 5 of them after it, but then it only uploads the last one.