20 lines
423 B
PHP
20 lines
423 B
PHP
<?php
|
|
|
|
include 'php/classes/page.php';
|
|
include 'functions/func_filesystem.php';
|
|
|
|
$page = new Page();
|
|
|
|
$page->attr('title','Download Alaska FAQ');
|
|
$page->display('menu',false);
|
|
$page->display('header',false);
|
|
$page->display('footer',false);
|
|
$page->content('faq.php');
|
|
|
|
# get the list of files
|
|
$files = filesys_get_wanted_children($DOCROOT.'/uploads','folders',"/\.doc$/");
|
|
$page->data('files',$files);
|
|
|
|
$page->process();
|
|
|
|
?>
|