Hi guys.
Ok I am trying to put together a script that allows me to upload an image...
I've got the form worked out:
<form action="uploading.php" method="POST" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="1024">
Upload Image: <input type="file" name="userfile">
<font size="1">Click browse to upload a local file</font>
<input type="submit" value="Upload Image">
</form>
From here I understand that the file is put into a temporary directory C:\php\uploadtemp and deleted after the script stops running.... How do I get it out of there and into the directory I need it in (which relative to where this script is sitting in is ../images)
I only need this one to be super basic... I've tried so many different idea's that have been posted but I just can't seem to work it out.
Thanks heaps in advance!!