Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. //Model
  2.  
  3. public static function findById($id)
  4. {
  5. $db = new Db();
  6. $sql = 'SELECT * FROM ' . static::TABLE . ' WHERE `id` = :id';
  7. return $db->query($sql, static::class, [':id' => $id])[0] ?? false;
  8. }
  9.  
  10. http://php-2/DZ-1/article.php?id=not found
  11.  
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <meta charset="UTF-8">
  16. <title>Моя новость </title>
  17. </head>
  18. <body>
  19.  
  20. <h1><?php echo $article->title; ?></h1>
  21. <p><?php echo $article->content; ?></p>
  22.  
  23. </body>
  24. </html>
  25.  
  26. Notice: Trying to get property 'title' of non-object in
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement