Jump to content

moshy

New Members
  • Posts

    2
  • Joined

  • Last visited

moshy's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I have stored images on mysql using blob. I want to download the images back to my computer in their original format (Not just displaying them on the web page). How do I do this ? The script for displaying the images on the web page is shown below. How can I modify this code to directly download the images back to my computer ? <?php $link=mysql_connect("localhost","root",""); if(!$link) { die("could not connect:".mysql_error()); } mysql_select_db("media",$link); $que="select imageBlob from images where imageId=10"; //imageBlob- name of the blob data type field in mysql. $ret=mysql_query($que)or die("Invalid query: " . mysql_error()); header("Content-type: image/jpeg"); echo mysql_result($ret, 0); mysql_close($link); ?>
×
×
  • Create New...