Just like I did for my vBSEO info page
http://vbmodder.com/forums/vbseoinfo.php .
Just create the html you need to display it and whatever else you want in the page then create a new template with that html in it. Just the content tables. No header info.
Then use this code as a php file named for the park and add your template info and navbits info.
PHP Code:
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'thisisthescriptname'); //change this to the name of the script without the .php
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array(
'Thisisthetemplateyoumade' //change this to the template you made
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once(DIR . '/includes/functions_bigthree.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
$navbits[''] = 'The navbits name of the page'; //change this to whatever you want the page to show in the breadcrumb on navbar.
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('Thisisthetemplateyoumade') . '");'); //change this to the template you made
Then just upload the file to your forumroot and link to it.