<?php header('Content-type: text/html; charset=utf-8'); ?><?php  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */  // load viewer library  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';  $dirsToCheck = array('/home/hummingb/public_html/','','../','../../','../../../');  foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}  if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }  // load records  list($other_pages_festivalRecords, $other_pages_festivalMetaData) = getRecords(array(    'tableName'   => 'other_pages_festival',  ));?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"> <head>  <title></title>  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />  <link href='favicon.ico' rel='shortcut icon' type='image/gif'/>  <style type="text/css">    body          { font-family: arial; }    .instructions { border: 3px solid #000; background-color: #EEE; padding: 10px; text-align: left; margin: 25px}  </style> </head><body> <?php foreach ($other_pages_festivalRecords as $record): ?>            Name: <?php echo $record['name'] ?><br/>      URL : <a href="<?php echo $record['_link'] ?>"><?php echo $record['_link'] ?></a><br/>      <hr/>    <?php endforeach ?>    <?php if (!$other_pages_festivalRecords): ?>      No records were found!<br/><br/>    <?php endif ?>  <!-- /STEP2: Display Records --></body></html>