예제 #1
0
require "library/htmlPage.class.php";
$page = new htmlPage();
/* The next line streams the initial html.  Don't change this. */
$page->HTMLstreamTop();
?>

      <h3>Contact</h3>
      <p>If you want to discuss membership or anything to do with the activity of the Castle Sailing Club, please contact <?php 
echo $page->contact;
?>
, preferably by email, on:</p>
      <p class="centre"><?php 
echo "<a href=\"mailto:{$page->email}\">{$page->email}";
?>
</a></p>
      <p>or by 'phone on:</p>
      <p class="centre"><?php 
echo $page->phone;
?>
</p>

<?php 
/* The final line streams the final html.  Don't change this. */
$page->HTMLstreamBottom();
/**---------------------------------------------
 *             End of Code
 *----------------------------------------------
 */
?>