-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<title>
-</title>
-<link rel="StyleSheet" href="./../Tabla/php/Tabla/tabla_estilos.css">
-</head>
-<body bgcolor="#FFFFFF" color="#000000" align="center">
-<table width="760" align="center">
-<tr>
-<td>
-
-<?php
-
- require_once './../Tabla/php/Tabla.php';
-
- $TABLA = new Tabla ();
-
- $row = array (
- '0' => 'Col 1',
- '1' => 'Col 2',
- );
-
- $TABLA->agregarFilaCabecera($row);
-
- $row = array (
- '0' => 'Fila 1',
- '1' => 'Fila 2',
- );
-
- $TABLA->agregarFila($row);
-
- $tohtml = $TABLA->toHtml();
-
- print $tohtml;
-?>
-
-
-
-</td>
-</tr>
-</table>
-</body>
-</html>
-
-