http://bigtitsvideos.info/dl.php?id=5
I'm trying to display an image which is stored in a mediumblob table field, any ideas? Here is my code:
Code:
<?php
include "config.php";
$result = mysql_query("select * from [MASKED] where id = '$id'");
while($r=mysql_fetch_array($result))
{
$content=$r["content"];
$type=$r["type"];
header("Content-type: $type");
echo ($content);
}
mysql_close($connection);
?>