Community
0
Q:

open pdf file in browser php

<?php
    // Store the file name into variable
    $file = 'filename';
    $filepath = "https://www.example.com/".$file;
    // Header content type
    header("Content-type: application/pdf");
    // Send the file to the browser.
    readfile($filepath);
1

New to Communities?

Join the community