East Surrey Walkers

Walking for Pleasure

Display any cancelled walks.

This option ONLY displays a list of walks that have been cancelled. If there are no cancelled walks then the display is blank.

I would recommend putting this code at the top of your home page. Then when a walk is cancelled the home page will automatically display a message and list of the cancelled walks and the reason they are cancelled.

 

<?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 RJsonwalksStdCancelledwalks(); // code to display the walks in a particular format

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

?>