Anonymous Guest
|
Posted: Sat Oct 07, 2006 10:06 am Post subject: Programatically stream file with ices.pm? |
|
|
Hi!
I use ices.pm to play mp3 files from a mysql playlist. Instead of playing them all together I want to send a parameter like "id" for example to select one mp3 file at a time. I tried something like this:
http://mystation:8000/ices?id=15
and in ices.pm I added:
use CGI;
$query = new CGI;
$id = $query->url_param('id');
but it seems that ices.pm doesn't receive any id parameter at all.
How can I do that?
Thx |
|