upload pdf file with php code example
Example 1: open pdf file in browser php
<?php
$file = 'filename';
$filepath = "https://www.example.com/".$file;
header("Content-type: application/pdf");
readfile($filepath);
Example 2: view uploaded pdf file in php
<?php include 'filesLogic.php';?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>Files Upload and Download</title>
</head>
<body>
<div class="container">
<div class="row">
<form action="index.php" method="post" enctype="multipart/form-data" >
<h3>Upload File</h3>
<input type="file" name="myfile"> <br>
<button type="submit" name="save">upload</button>
</form>
</div>
</div>
</body>
</html>