[edit]
audio controls
$file = 'path/to/your/music.mp3'; // Specify the path to your MP3 file
$mime_type = 'audio/mpeg';
if (file_exists($file)) {
header('Content-type: ' . $mime_type);
header('Content-length: ' . filesize($file));
header('Content-Disposition: filename="' . basename($file) . '"');
header('X-Pad: avoid browser bug');
header('Cache-Control: no-cache');
readfile($file);
exit;
} else {
header("HTTP/1.0 404 Not Found");
echo "File not found.";
}
&lgt;audio controls>
&lgt;source src="stream_mp3.php" type="audio/mpeg">
Your browser does not support the audio element.
&lgt;/audio>