Login   Register  
PHP Classes
elePHPant
Icontem

File: test-table.class.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Fauzi Gomez  >  Table Class Easy  >  test-table.class.php  >  Download  
File: test-table.class.php
Role: Example script
Content type: text/plain
Description: test the class
Class: Table Class Easy
Compose and output HTML tables programatically
Author: By
Last change:
Date: 2013-11-23 18:33
Size: 2,159 bytes
 

Contents

Class file image Download
<?php


include ("list.class.php");
include (
"table.class.php");


$columnas = new l_td();
$filas = new l_tr();
$tabla = new table();

$tal = new td();

$col = array();

$col1 "Hola0";
$col0 = array("class"=>"uno");

//$col[] = array($col1,$col0);
$columnas->add_col($col0,$col1);

//$tal->td($col1,$col0);

/*
echo htmlentities($tal->get_td());
echo "<br><br>";
*/
/*
print_r($col);
echo "<br><br>";

var_dump($columnas);
echo "<br><br>";

*/

$col1 "Hola1";
$col0 = array("class"=>"uno");

//$col[] = array($col0,$col1);
$columnas->add_col($col0,$col1);



/*
print_r($col);
echo "<br><br>";
*/

$col1 "Hola2";
$col0 = array("class"=>"uno");

//$col[] = array($col0,$col1);
$columnas->add_col($col0,$col1);

/*
print_r($col);
echo "<br><br>";
*/

$col1 "Hola3";
$col0 = array("class"=>"uno");

//$col[] = array($col0,$col1);
$columnas->add_col($col0,$col1);


$columnas->p_td();
/*
print_r($col);
echo "<br><br>";
*/


//$columnas->add_col2($col);
/*
echo "<br>columnas<br>";
$columnas->p_td2();

echo htmlentities($columnas->get_tds());
echo "<br>columnas<br>";
*/

$filas->add_row( array("class"=>"dos"),$columnas);

/*
echo "<br>filas<br>";
var_dump($filas);
echo "<br>filas<br>";

echo "<br><br>1111";
*/
$filas->p_tr();
//echo htmlentities( $filas->get_trs() );
/*
echo "1111<br><br>";

var_dump($filas);
echo "<br><br>ssssssss";
*/
$tabla->p_table(array("class"=>"tres","border"=>"1"),$filas);

/*
echo "<br><br>";

var_dump($tabla);
echo "<br><br>";
*/

//$c1 = new l_td();
$f1 = new l_tr();
$t = new table();

//$tal = new td();

$col = array();


for (
$i=0;$i<21;$i++){
    
$c1 = new l_td();
    for (
$j=0;$j<21;$j++){
        
$c1->add_col(array("class"=>"uno"),$i+$j);
    }
    
$c1->p_td();
    
$f1->add_row(array("class"=>"dos"),$c1);
    
}

$f1->p_tr();
$t->p_table(array("class"=>"tres","border"=>"1"),$f1);


?>
<html>
    <body>
        <?php //echo htmlentities($tabla->get_tr ()); ?>
        
        <?php echo $tabla->get_tr (); ?>
        <?php echo $t->get_tr (); ?>
    </body>
</html>