Guest User

Untitled

a guest
Jan 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. <?php
  2. try {
  3. $movie = new Movie($_GET['id']);
  4. echo $movie->title;
  5. }
  6. catch (Exception $e) {
  7. echo 'No movie was found';
  8. }
  9. ?>
Add Comment
Please, Sign In to add comment