GamerScenede

Untitled

Jul 20th, 2011
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ALL);
  3. file_put_contents("tb_tmp.txt", file_get_contents("http://tray.technobase.fm/radio.xml"));
  4. $tb = simplexml_load_file("tb_tmp.txt");
  5. $tb = $tb->radio[0];
  6. $string  = '';
  7. $string .= "TechnoBase.FM :: ";
  8. $string .= $tb->moderator." (";
  9. $string .= $tb->show.") :: ";
  10. $string .= $tb->starttime.":00 Uhr - ";
  11. $string .= $tb->endtime.":00 Uhr :: ";
  12. $string .= $tb->artist." - ";
  13. $string .= $tb->song;
  14. echo $string;
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment