I have a page to add new article. Fields accepted from user are:

  • article name
  • article content
  • article document (pdf file)
  • article cover image (image file)

Creating the article is okay. I use HTTP POST with a multipart form for this. But when it has to be edited, I want to check if the files are uploaded. Edit-page contains same fields like above.

For name and content, I can check using isset() and !empty() functions. If both function fails, display a message to user.

What I want is, in edit-page, user can avoid uploading document and cover image. So, how to check if user had uploaded(selected a file for upload), at server side ? If user selected a new document or new cover image, I will remove old file and replace it with this new uploaded files. Otherwise, only change article name and article content in database. Skip file part, because user did not selected any files.

My question: how we check if user selected a new file ?

I am confused here. Please help.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
if(!file_exists($_FILES['name_of_field']['tmp_name']) 
{
  # No file uploaded
}
link|improve this answer
thank you for the answer – Vpp Man Dec 25 '11 at 16:00
feedback
if (is_uploaded_file($_FILES['file']['tmp_name'])) {
   # Handle uploaded file.
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.