Hi - I have a really funky problem here. I have a simple file-upload form :
<FORM METHOD="post" ACTION="p.php" ENCTYPE="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="2000000">
<INPUT TYPE="file" NAME="pic">
<INPUT TYPE="submit" NAME="picsend" VALUE="Send My Picture">
</FORM>
But when a person clicks send - the contents of the resulting $pic variable is something weird like /tmp/phprrWFNN and not the file name! What's this all about, eh? I've never had this problem before and I've done this same procedure before!
Thanks.