file contents of staff_credits_2025.php
<?
// ===========================================================================================
// HIDDEN EARTH STAFF CREDITS for 2024
// ===========================================================================================
// Note: this is a program file, and follows an arcane syntax. However, the lists of staff credits
// are, broadly speaking, in plain text, and could be extracted from here and pasted into a
// Word document, if thats what you are seeking to do.
// ===========================================================================================
// HOW IT WORKS
// ===========================================================================================
/* There are two PHP functions that accept a heredoc and convert the plain-text listings into
formatted HTML.
Function echo_heading_and_table() prints a heading line and a table. The first line of the
listing is treated as a heading, followed by table-rows. Cells in a row are separated by
the pipe character. NOTE THAT it is "correct" that (sometimes) the same name appears in
the heading line, and in the first line of the table entries. If there is a comma-separated
list of (e.g.) names in one of the resultant table cells, then any spaces not preceded by commas
are replaced by non-breaking spaces.
Function echo_heading_and_list() prints a heading line, followed by a comma-separated list
of entries. If the first item in the list contains [ then the text between [ and ] is
embellished. If [ is not present, the items are separated with commas and with nbsp replacing
spaces within an entry. The lines are sorted alphabetically by the first character (not
conventional, but easier than messing about extracting surnames).
*/
// ===========================================================================================
// INITIALISATION
// ===========================================================================================
require_once('process_staff_credits.php');
$file = __FILE__; // The current file. Used in __show.php
include '__show.php'; // Decide whether to display this code in the browser or execute it
// ===========================================================================================
// STAFF CREDITS in various lists
// ===========================================================================================
echo_heading_and_table(<<<EOT
Conference Manager | Les Williams
Conference Treasurer | David Gough
Conference Secretary | David Gibson
Timetable Manager | Gary Douthwaite
Trade Hall Manager | Badger
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_list(<<<EOT
Technical Team: Manager | Frank Tully
Frank Tully [with]
Adrian Turner
Bartek Biela
Ben Marks
Buddy (Roadie)
Dave Appleing
Firas Fayad
Helen Fairclough
Huw Jones
Jonathan Wilkes
Josh Bratchley
Josh Henry
Laura Appleby
Tim Webber
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_list(<<<EOT
Trade Hall Team: Manager | Badger
Badger [with]
Dave Bell
Helga Palmer
Paul Wilman
Simon Richardson
Tom Howard
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_list(<<<EOT
Reception Team: Manager | Lou Biffin
Lou Biffin [with]
Andrew Morse
Jess Burgess
Sam Drake
Kat Hawkins
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_table(<<<EOT
Events Team
Lecture Secretary | Gary Douthwaite
Signposting | Paul and Tiggy Dummer
SRT Events | Mark Wright, Dave Cowley, Jess Burkey
Speleo Olympics | The Roberts Family (Andrea, Philip, Justin, Charlie)
Stomp DJ | Ben Marks
Opening MC | John Gunn
Opening Video | Keith Edwards
Closing MC | Alan Jeffreys
Closing Video | Ian Healey
After-Dinner Speaker | Rostam Namaghi
Closing Script and Projections| David Gibson
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_table(<<<EOT
Bookings and Publicity Team
Bookings Manager | David Gibson
Web Site and Social Media | Gary Douthwaite
T-shirt Design | Tony King
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_table(<<<EOT
Competitions Team: Manager | David Gibson
Photo Salon | Bill Nix | Judges: Alex Anderson, Nicky Bayley, Ceris Jones, Pete Glanvill
Young Photographer | Julie Wooldridge | Judges: Julie Wooldridge, Mark Burkey, Badger
Video Salon | Paul Taylor, Footleg | Judges: Steve Thomas, Ian Healey, Footleg, Nicola Bayley, Steve Woolven, Bartek Biela
Art Salon | Robin Gray, Ceris Jones | Judges: Judith Calford, Robin Gray, Buddy
Surveying Salon | Andrew Atkinson | Judges: Wookey, Andrew Atkinson, Lara Bartleet, Ash Gregg, Phil Underwood
Club Stands Award | Les Williams | Judges: Thomas Arbenz, Chris Scaife
Arthur Butcher Award | Wookey | Judges: Wookey, Andrew Atkinson, Diane Arthurs
Tratman Award | Chris Howes | Judges: Joe Duxbury, Chris Howes, Alan Jeffreys, Martin Mills, Linda Wilson
Giles Barker Award | Chris Howes | Judges: Morgannwg CC, Red Rose CPC
Competitions Team Assistants | Nat Fretwell, Footleg |
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_list(<<<EOT
Sponsorship and Prizes Team | Margaret Richardson
Margaret Richardson [with]
Julie Wooldridge
Rosemary Taylor
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_list(<<<EOT
First Aid Team | Chris Williams
Chris Williams [with]
Gareth Stonely
Joshua Benton
Kieran Wyatt
Mary Cutts
Josh Benton
Josh White
Badger
Paul Wilman
Sam Drake
EOT
);
// ---------- done for 2025 ---------------------------------------------------
echo_heading_and_list(<<<EOT
Special thanks to | Pafiliwn Llangollen Pavilion
Keith Potts and his team
EOT
);
?>