New RTTL Ringtones!
$table = newfreerttl; $result = mysql_query("select * from $table order by Artist"); while($r=mysql_fetch_array($result)) { $id = $r['id']; $artist = $r['artist']; $title = $r['title']; $artist = str_replace(" ", "-", $artist); $title = str_replace(" ", "-", $title); echo "
Totally Free RTTL:
"; $artist = str_replace("-", " ", $artist); $title = str_replace("-", " ", $title); echo "$artist - $title
"; } ?>