Código PHP:
$gotten = @mysql_query("select * from resume order by id desc limit 1");
$row = @mysql_fetch_assoc($gotten);
$bytes = $row[file];
header('Content-type: application/pdf; Content-disposition: attachment; filename="archivo.pdf"');
print $bytes;
Que podría estar mal?