Jump to content

Recommended Posts

I've read through tons of resources and tutorials and as far as I can tell, my code is accurate, but for some reason it's not working...

 

My HTML Form:

<form action="script.php" name="update" method="post">
<input type="file" name="update_banner" size="22" /> <br />
<input type="submit" name="update_submit" value="Update Subscription" />
</form>

 

My Handling Script:

// if there is an update submitted...
if (isset($_POST['update_submit'])) // if the update form has been submitted
{
// if there is a file to upload...
if (isset($_FILES['update_banner']) && !empty($_FILES['update_banner']['name']))
{
	// it should give me all the info about that file...
	die(print_r($_FILES));
}
else
{
	die("No file has been uploaded");
}
}
else
{
die("No upload has been submitted");
}

 

It should output all the info about that file, but I load the form, select an image from my computer, hit submit, and it tells me there is no file.

 

Any ideas why?

Link to comment
https://forums.phpfreaks.com/topic/181094-solved-form-file-upload/
Share on other sites

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.