20 lines
394 B
PHP
20 lines
394 B
PHP
<?php
|
|
|
|
include 'php/classes/page.php';
|
|
include 'functions/func_xml.php';
|
|
|
|
$page = new Page();
|
|
$page->init_user();
|
|
|
|
$page->attr('title','Your Christian Travel Resource');
|
|
$page->content('home.php');
|
|
$page->useJSFile('jquery.min.js');
|
|
$page->addJSFile('default.js');
|
|
|
|
# get news items
|
|
$news = xml_get_from_file($FILES['news']);
|
|
$page->data('news',$news->xpath('newsitem'));
|
|
|
|
$page->process();
|
|
|
|
?>
|