sir pannels
02-13-2006, 01:06 PM
Morning people :)
I have mp3's stored in a mysql database, though i have no idea how to get them out :)
How do I make them downloadable? I have done this before with images using something like this ..
list($name, $type, $size, $content) = mysql_fetch_array($result);
header("Content-length: $size");
header("Content-type: $type");
header("Content-Disposition: attachment; filename=$name");
echo $content;
However not sure how to do it for mp3 files.
Any pointers would be great.
Thanks,
Sir P
I have mp3's stored in a mysql database, though i have no idea how to get them out :)
How do I make them downloadable? I have done this before with images using something like this ..
list($name, $type, $size, $content) = mysql_fetch_array($result);
header("Content-length: $size");
header("Content-type: $type");
header("Content-Disposition: attachment; filename=$name");
echo $content;
However not sure how to do it for mp3 files.
Any pointers would be great.
Thanks,
Sir P