This function wont echo the $title, the code inside the function works great when I put it directly in the index file but when I make a function out of it it doesn't echo anything.
I can make a function just echoing "Hello" but this wont work.
I have checked that the connection file is included.
function title(){
    $query = $db->prepare("SELECT * FROM posts");
    $query->execute(); 
    $get = $query->fetch(); 
    $title = $get['title'];
    echo $title;
}
 
     
     
     
     
    