question about file uploader script
Hey,
I need a file upload script, but I need it so that you can choose the directory location as to where it uploads to
For example, a form like this:
<form enctype="multipart/form-data" action="uploader.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose the files upload location: <input type="text" />
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" value="Upload File" />
</form>
Cheers