Jump to content

Input Type File Not Passing File


JustinK101

Recommended Posts

I have a file upload field:

 

<form name="uploadForm" enctype="multipart/form-data" action="" method="post">
   <strong>Upload Image:</strong> <input name="fileField" id="fileField" type="file" size="45" />
   <input type="button" value="Upload Image" id="upload_image" onclick="submit(this.form);" />
</form>

 

Then at the top of the php page I am trying to get the filename from the field by:

 

echo "file = " . $_POST['fileField'];

 

But its empty. Does a `file` field not pass its value along to post? Thanks.

Link to comment
https://forums.phpfreaks.com/topic/143569-input-type-file-not-passing-file/
Share on other sites

I have got a custom upload script, I just need to know if indeed the value of $_POST['fileFIeld'] is not passed. I know there is a global $_FILES where the actual file exists. It is just weird that $_POST['fileField'] doesn't have the filename.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.