yeah I know, for displaying images on the web, i use this:
@MYSQL_CONNECT("localhost","username","password");
@mysql_select_db("database");
$query = "select pic, filetype from table where id=$id";
$result = @MYSQL_QUERY($query);
$data = @MYSQL_RESULT($result,0,"pic");
$type = @MYSQL_RESULT($result,0,"filetype");
Header( "Content-type: $type");
echo $data;
How would I make a rom downloadable, a link to this file?