Thanks for your reply, this is kind of what i have up to now
<?php
include("conn_inc_reg.php");
$query = "select * from mktreportsupload where id='35'";
$result = mysql_query($query) or die(mysql_error() );
$row = mysql_fetch_array($result);
$content = $row[content]; \content is the blob data
header("Content-type: application/pdf");
header('Content-Disposition: attachment; filename="downloaded.pdf"');
readfile('original.pdf');
print $content;
?>
Are the names for downloaded.pdf and original.pdf relevant to anything??
How would you change the above code to get it to work? Sorry most things relating to PHP/MySQL i can get my head round but this one has baffled me!