Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. include/DbHandler.php
  2.  
  3. public function getVideos(){
  4. $stmt = $this->conn->prepare("SELECT id, title, bunny_name, description, video_thumbnail, video_path FROM tbl_videos");
  5. $stmt->execute();
  6. $vids = $stmt->get_result();
  7. $stmt->close();
  8. return $vids;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement