1 <?php
2 /**
3 * Import the basic DomDoc class for inheritance.
4 *
5 * This class is based on xmlDB and hence supports all of it's functionality.
6 *
7 * @import DomDoc
8 */
9 include_once "XAO_XmlDB.php";
10
11 /**
12 * Convert a result table from an SQL query into basic XML.
13 *
14 * Very simple conversion of SQL query results table to XML data which may then
15 * be transformed into a suitable structure. Optionally more complext usage can
16 * include the use of callback functions through the optional arguments to the
17 * constructor. See the constructor method documentation for details. This class
18 * extends DomDoc and therefore inherits all DomDoc capabilities.
19 *
20 * @author Terence Kearns
21 * @version 0.2
22 * @copyright Terence Kearns 2003
23 * @license LGPL
24 * @package XAO XML DB
25 * @link http://xao-php.sourceforge.net
26 */
27 class Xindice extends XmlDB {
28 }
29
30 ?>