<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>XtPHP :: Documentação</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="generator" content="Geany 0.20" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>XtPHP</h1>
<h2>Biblioteca de classes PHP</h2>
<table width="100%" border="0">
<tr class="mainmenu">
<td colspan="2">
<table width="100%" border="0">
<tr>
<td>
<a href="http://code.google.com/p/xtphp-lib/">Projeto</a>
</td>
<td>
<a href="http://code.google.com/p/xtphp-lib/downloads/list">Download</a>
</td>
<td>
<a href="index.php">Documentação</a>
</td>
<td>
<a href="http:://everton3x.blogspot.com">Autor</a>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="side">
<h1>Classes</h1>
<ul>
<?php
$xml_dir = 'xml/';
$example_dir = '../examples/';
require 'app/side.php';
?>
</ul>
</td>
<td class="content">
<?php
if($_GET['class'] && !$_GET['method'])
{
require 'app/class.php';
}
elseif($_GET['class'] && $_GET['method'])
{
require 'app/method.php';
}
else
{
require 'main.php';
}
?>
</td>
</tr>
</table>
</body>
</html>
|