visitors uploading pictures
Posted by: Number3
Posted on: 2005-08-31 00:10:00
Hello,
I am trying to implement a feature on my website where user's can upload pictures from their hard disk. I will then place the path to the file in one of my tables for reference.
I currently have this:
<form name="addArticle" method="post" action="myform.php" class="form" ENCTYPE="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
<input type="file" name="artPicture" tabindex="8">
</form>
My problem is that I do not know what location the file is uploaded to.
Does anyone know the location the file are uploaded to?
Thanks in advance