how can i retrieve .doc file from a blob type stored in mysql database

<?php 
$con=mysql_connect("host","user","pass");
mysql_select_db("dbname");
$query="select columnname from table where condition";
$result=mysql_query($query);
$row=mysql_fetch_array($result);
$document_contents=$row['columnname'];
header("Content-Type: application/msword");
header('Content-Disposition: attachment; filename="document.doc"');
echo $document_contents;
?>

Thats how you retrieve a document from a table.

Cheers.
Nav

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.