ok i got files uploading to my database alright. but having problems downloading files from the database, it shows as a link and when i click on the link nothing happens.
In your download.php you make the links and exit. This means you will not go any further than your exit call.
download.php
exit
You need to rethink your logic in the download file. You also call
header("Content-length: $size"); exit; print $content;