I\'m trying to decide which mime type to choose for returning mp3 data (served up by php)
according to this listing of mime types: http://www.webmaster-toolkit.com/m
The standard way is to use audio/mpeg which is something like this in your PHP header function ...
audio/mpeg
header('Content-Type: audio/mpeg');