Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have one image upload script which upload same image on two locations same time with move_uploaded_file() function like this

  $fpath="../p/e/".$prop_fac1;
  $error = move_uploaded_file($tmp_name, $fpath);

  $fpath1="../p/t/".$prop_fac1;
  $error1 = move_uploaded_file($tmp_name, $fpath1);

the problem is, first part works mean it upload files to ../p/e but not copy file to second location...

share|improve this question

2 Answers

up vote 2 down vote accepted

the problem is, first part works mean it upload files to ../p/e but not copy file to second location...

Works as designed. The file is moved, not copied. Use copy() for the second command, using the target path from the first one.

 $error1 = copy($fpath, $fpath1);
share|improve this answer

That would be because it's MOVE_uploaded_file, not COPY_uploaded_file. What you need to do is:

move_uploaded_file($tmp_name, $fpath);
copy($fpath, $fpath1);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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