PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Guerrieri Luca   PXAServer   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Index file
Class: PXAServer
Library to build applications configured with XML
Author: By
Last change:
Date: 17 years ago
Size: 466 bytes
 

Contents

Class file image Download
<?
 
require ('./libreria/libfunz.inc.php');
 
$title='html_title';
 
$html_css='html_stylesheet';
 
$print_css='print_stylesheet';
 
$html_body='html_body';
 
$jscript='null.js';
 
$ajax='true';
 
header_html_full($title,$html_css,$print_css,$jscript,$ajax,$html_body);
 
$nome_template="template01";
 
$template="test_template_static.tpl";
 
$data="test_data_static.xml";
 
make_static_template_page($nome_template, $template, $data);
 
footer_html_standard();
?>