]> git.llucax.com Git - mecon/meconlib.git/commitdiff
(no commit message)
authorMartín Marrese <marrese@gmail.com>
Fri, 28 Mar 2003 20:55:26 +0000 (20:55 +0000)
committerMartín Marrese <marrese@gmail.com>
Fri, 28 Mar 2003 20:55:26 +0000 (20:55 +0000)
test/prueba_tabla.php [deleted file]

diff --git a/test/prueba_tabla.php b/test/prueba_tabla.php
deleted file mode 100644 (file)
index b79e320..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<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>
-
-