Files
friendshiptours.org/index.php
2015-11-12 19:58:50 -06:00

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();
?>