het is de bedoeling dat hij bekijkt welk nummer op dat mometn aan eht spelen is
<?php
function getnowplaying(){
$url = "http://www.shoutcast.com/directory/index.phtml?s=timeloop"; //shoutcast stream link
$start = '<font size="1"><a id="chatstuff" href="aim:goim?screenname=ssalvona">[ AIM ]</a> <font color="#FF0000">';
$end = "</font></font></td>";
$read = file_get_contents($url);
$data = eregi($start."(.*)".$end, $read, $output);
$output = $output[1];
echo "$output"; // de tekst die te zien is
}
?>