<?php
//-- Alvaro Tejada Galindo --//
//-- SinglePath games design --//
//-- http://www.iespana.es/singlepath --//
//-- singlepathpe@yahoo.es --//
//-- 07 de Julio del 2004. --//
?>
<?php
//Llamamos a nuestro Clase para procesar XML
require("My_XML_Parser_Class.php");
?>
<html>
<head>
<title></title>
</head>
<body>
<?php
//Definimos el nombre del archivo XML
$file = "data.xml";
//Creamos un nuevo Parser de XML
$Parser = new myXML_Parser();
//Llenamos los Mapas de Tags
$Parser->Fill_Map();
//Parseamos el XML
$Parser->Set_Initial_XML($file);
?>
</body>
</html>