<?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 */  require_once "/home/content/n/o/b/noblehorizons/html/cmsAdmin/lib/viewer_functions.php";  list($link_creatorRecords, $link_creatorMetaData) = getRecords(array(    'tableName'   => 'link_creator',    'where'       => whereRecordNumberInUrl(1),    'limit'       => '1',  ));  $link_creatorRecord = @$link_creatorRecords[0]; // get first record  // show error message if no matching record is found  if (!$link_creatorRecord) {    print "Record not found!";    exit;  }?><!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>Noble Horizons</title>  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />  <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>  <!-- STEP2: Display Records (Paste this where you want your records to be listed) -->      <?php echo $link_creatorRecord['emergency_link'] ?>       <!-- /STEP2: Display Records --></body></html>