I've a php code for a file download for specific user I'm storing the content of the file in a database (using blob type).
<?php
//do stuffs to validate user
//do stuffs get the content from database;
//$r=mysql_fetch_object("$query");
header("Content-Type: $r->type");
header("Content-Disposition: attachment; filename=\"$r->name\"");
echo $r->content;
?>
In case of large files the file downloading takes long time. How to improve the code? Does the speed of download increased with multiple connections?
Content-Lengthheader will allow the receiving user to get a status bar and estimated arrival time (may feel quicker). – Rudu Nov 7 '11 at 17:42