Hi all,
I'm currently creating a custom uploader, so far I have:
Code:
<form enctype="multipart/form-data" action="/index.php" method="post">
<p><b>File 1:</b><br/><input type="file" name="fileUpload1" size="50" /></p>
<p><b>File 2:</b><br/><input type="file" name="fileUpload2" size="50" /></p>
<p><b>File 3:</b><br/><input type="file" name="fileUpload3" size="50" /></p>
<p><b>File 4:</b><br/><input type="file" name="fileUpload4" size="50" /></p>
<p><input type="submit" name="butSub" value="Upload" /></p>
</form>
</div>
</div>
Now, how would I get it too put all uploads in a certain folder? Also, is there anyway I can get it too show the url after so users can copy-n-paste?
Thanks!
Regards Jason