Somerset Area

<?php
//error_reporting(E_ALL);
//ini_set('display_errors', 1);
$rafeedurl ="http://www.ramblers.org.uk/api/lbs/walks?groups=SO01,SO02,SO03,SO04,SO05,SO06,SO07,SO50";

$feed=new RJsonwalksFeed($rafeedurl); // standard software to read json feed and decode file

$display= new RJsonwalksStdSimplelist(); // code to display the walks in a particular format

$feed->Display($display);  // display walks information

$display=new RJsonwalksStdWalkscount();

$feed->Display($display);  // display walks information

$display= new RJsonwalksStdListleaders();

$feed->Display($display);  // display walks information

?>