East Berks Ramblers

Berkshire Area

Remember to carry and drink plenty of water when walking in the current heat.
Save the dates: EBR AGM Sat 14/11/26 and Berkshire Area AGM Sat 28/11/2026

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.

Code used below

<?php
$rafeedurl ="http://www.ramblers.org.uk/api/lbs/walks?groups=de02"; // de02 is the group code
$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
?>

 

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

$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

?>