I was trying to view a PDF from my a MySQL database but it gets stuck on loading.
Here's my code:
<?php
    header("Content-type: application/pdf");
    $con = mysqli_connect("localhost","root","username","password");
    //check if errors occur in connection to database
    if (mysqli_connect_errno())
    {
        //return the error
        echo mysqli_connect_error();
    }
    $filename = $row['name'];
    $query = "SELECT content from images WHERE id = 7"; 
    $result = mysqli_query($query,$con)or die(mysqli_error()); 
    $row = mysqli_fetch_array($result, MYSQLI_ASSOC);  
    echo $row['content'];
?>
 
    