Advertisement
Guest User

Untitled

a guest
May 5th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <input type="file" name="gallery[]" multiple />
  2.  
  3. $id = time();
  4. $year = date("Y");
  5. $photo_path = "photos/$year/";
  6. $zip_path = "sets/$year/";
  7.  
  8. $photo = $_FILES["photo"]["name"];
  9. $gallery = $_FILES["gallery"]["name"];
  10.  
  11. move_uploaded_file($_FILES["photo"]["tmp_name"],"$photo_path" . $id . ".jpg"); // This Adds Photo To $photo_path
  12. move_uploaded_file($_FILES["gallery"]["tmp_name"],"$zip_path"); // This Doesn't Add 5 Files To $zip_path
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement