<?php
// CONECT DATABASE
include('koneksi.php');
$id = $_GET['id'];
$sqll="SELECT * FROM `file_attachment` WHERE `id`='$id'";
$query=mysql_query($sqll) or die(mysql_error());
$result=mysql_fetch_array($query);
$content=$result['file_content'];
?>
<object data="data:application/pdf;base64,<?php echo base64_encode($content); ?>" type="application/pdf" style="height:98%;width:100%"></object>
untuk penggunaan nya tinggal panggil sesuai url nya http://localhost/web1/download.php?id=6
nanti akan tampil seperti ini
done.
0 komentar: