Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1.  
  2. if (isset($_POST['addPhotos'])) {
  3.     $obj = new Photos();
  4.     $objFaculty = new Faculties();
  5.     $facultyId = $_POST['facultyId'];
  6.     $faculty = $objFaculty->byId($facultyId);
  7.     $specialty = $_POST['specialityId'];
  8.     $photos = $_FILES['photoFile'];
  9.     $obj->add($photos, $faculty);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement