Severnside Ramblers

<?php
//error_reporting(E_ALL); // remove // comments to see error messages
//ini_set('display_errors', 1);
$rafeedurl ="http://www.ramblers.org.uk/api/lbs/walks?groups=av05";
$feed=new RJsonwalksFeed($rafeedurl); // standard software to read json feed and decode file
$events=new REventGroup(); // create a group of events
$events->addWalks($feed); // add walks to the group of events
$display= new REventCalendar(250); // code to display the walks in a particular format, size: 0, 200, 250 or 400
$display->setMonthFormat("Y M"); // optional format of Month/Year
$display->Display($events); // display walks information
?>