Hello, can anyone help me? Im having a problem in viewing a blob file.
I'm trying to view a file on webpage with pdf, doc, docx, xls, xlsx format but when i try to open the file it always download. what is wrong with it?
Here is that code.
<?php
if(isset($_GET['id']))
{
include("db.php");
$id = $_GET['id'];
$query = "SELECT name, type, size, content " .
"FROM upload WHERE id = '$id'";
$result = mysql_query($query) or die('Error, query failed');
list($name, $type, $size, $content)=mysql_fetch_array($result);
header("Content-length: $size");
header("Content-type: $type");
echo $content;
exit;
}
?>
😕
(Changed [noparse]
tags to
[/noparse] tags -- MOD)