Advertisement
SashaRaaa

Untitled

Jul 24th, 2018
1,085
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2.  
  3. require __DIR__ . '/view.php';
  4. require __DIR__ .  '/gallery.php';
  5.  
  6. $gallery = new Gallery;
  7. $view = new View;
  8.  
  9. $view->assign('image', $gallery);
  10. $view->display('/mygallery.php');
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement