East Surrey Walkers

Walking for Pleasure

This is our current programme of walks, output in a simpler format for printing. Just click the Print button..

<?php
//error_reporting(E_ALL);
//ini_set('display_errors', 1);
$rafeedurl ="http://www.ramblers.org.uk/api/lbs/walks?groups=sr02";

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

$display= new RJsonwalksSr02Programme(); // code to display the walks in a printable format

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

?>