11 lines
183 B
PHP
Executable File
11 lines
183 B
PHP
Executable File
<?php
|
|
|
|
include "php/classes/page.php";
|
|
|
|
$page = new Page;
|
|
|
|
$page->attr('title','The International Jairus Society : Contact Us');
|
|
$page->content('contactus.php');
|
|
$page->process();
|
|
|
|
?>
|