Guest User

Untitled

a guest
Jan 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $url='http://meetings.bloomingtonmn.gov:8080/agenda/cityofbloomington/feedme.rss';
  3. // get the content
  4. $array=file($url);
  5. // make the array into a variable
  6. $feed_content=implode('',$array);
  7. //write it to the page
  8. echo $feed_content;
  9. ?>
Add Comment
Please, Sign In to add comment