Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.