Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- error_reporting(E_ALL);
- file_put_contents("tb_tmp.txt", file_get_contents("http://tray.technobase.fm/radio.xml"));
- $tb = simplexml_load_file("tb_tmp.txt");
- $tb = $tb->radio[0];
- $string = '';
- $string .= "TechnoBase.FM :: ";
- $string .= $tb->moderator." (";
- $string .= $tb->show.") :: ";
- $string .= $tb->starttime.":00 Uhr - ";
- $string .= $tb->endtime.":00 Uhr :: ";
- $string .= $tb->artist." - ";
- $string .= $tb->song;
- echo $string;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment