]> git.llucax.com Git - mecon/meconlib.git/blob - HTML/test/prueba_tabla.php
Funciones de intranet para el manejo de objetos de HTML.
[mecon/meconlib.git] / HTML / test / prueba_tabla.php
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
4 <title>
5 </title>
6 <link rel="StyleSheet" href="./../Tabla/php/Tabla/tabla_estilos.css">
7 </head>
8 <body bgcolor="#FFFFFF" color="#000000" align="center">
9 <table width="760" align="center">
10 <tr>
11 <td>
12
13 <?php
14
15     require_once './../Tabla/php/Tabla.php';
16
17     $TABLA = new Tabla ();
18
19     $row =  array (
20                 '0' => 'Col 1',
21                 '1' => 'Col 2',
22             );
23     
24     $TABLA->agregarFilaCabecera($row);            
25
26     $row =  array (
27                 '0' => 'Fila 1',
28                 '1' => 'Fila 2',
29             );
30     
31     $TABLA->agregarFila($row);
32
33     $tohtml = $TABLA->toHtml();
34     
35     print $tohtml;
36 ?>
37
38
39
40 </td>
41 </tr>
42 </table>
43 </body>
44 </html>
45
46