-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.php
25 lines (23 loc) · 873 Bytes
/
display.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<head>
<title>Pdf Reader</title>
</head>
<body bgcolor="yellow">
<center><h1>{------ All Pdf's ------ }</h1></center>
<div class="container">
<!-- <embed type="application/pdf" width="300" height="300"> -->
<?php
include_once('connection.php');
error_reporting(0);
$query = "SELECT pdf FROM reader";
$result = mysqli_query($connection,$query);
while ($row = mysqli_fetch_array($result)) {
?>
<center><iframe src="pdf_files/<?php echo $row['pdf']?>" width="80%" height="700px"></iframe></center>
<!-- <center><embed type="application/pdf" src="pdf_files/<?php echo $row['pdf']?>" width="800" height="800"> </center> -->
<?php
}
?>
</div>
</body>
</html>