Hi,
I try to open mp3 files from a web in streamming but even if WinAmp start, it dont find the file and I still have to browse to find it..
Here is the code I use. It's code that I have found on the web, I have just simplify it to my use :
<?
if (!$Play)
{
?>
<table>
<tr>
<td> <a href="mp3streamming.php?loc=pdf/testmp3.MP3&Play=yes">Click to ear!</a>
</td>
</tr>
</table>
<?
}
else
{
$loc = str_replace(" ", " ",$loc);
Header("Content-Type: audio/x-mpegurl");
echo $loc . "\n"; //just to see
}
?>
thanks for any help..
Styve