[Phphtmllib-devel] phphtmllib/examples example9.php,NONE,1.1
Status: Beta
Brought to you by:
hemna
From: <cu...@us...> - 2004-03-09 00:50:33
|
Update of /cvsroot/phphtmllib/phphtmllib/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1369 Added Files: example9.php Log Message: example generating a html table fragment. Also tries to use most of the table methods. --- NEW FILE: example9.php --- <?php /** * * The ideal way to use phphtmllib is to use the PageWidget object to create * complete html documents. If you are managing an existing code base with its * own structure and templates the ideal setup might not be practical. This * doesn't mean you can't use phphtmllib. Every descendant from the Container * object (all the classes for html tags) have a render() method which allow * you to generate output. * * This example generates a short html table fragment that could be inserted * anywhere in your code. It also attempts to make use of most of the TABLETag * methods. * * $Id: example9.php,v 1.1 2004/03/09 00:33:46 culley Exp $ * * @author Culley Harrelson <cu...@fa...> * @package phpHtmlLib * @subpackage examples * @version 1.0.0 * */ // load the phphtmllib files $phphtmllib = $_SERVER["DOCUMENT_ROOT"] . "/phphtmllib"; include_once("$phphtmllib/includes.inc"); // html_table() is a built-in helper function that returns a table object $table = html_table('95%', 1, 5, 5); // add caption tag as the first element in the table. TR tags should be added with add_row() $table->add(html_caption("A Caption for the table")); // default attributes for TDTags $table->set_default_col_attributes(array('nowrap' => 'nowrap')); // default attributes for TRTags $table->set_default_row_attributes(array('align' => 'center')); // these methods are available to all html tags $table->set_class('myclass'); $table->set_id('table1'); $table->set_style('background-color:#EEE'); $table->set_tag_attribute('name', 'the name of my table'); // add some data for ($i = 0; $i<20; $i++) { // add_row takes any number of arguments. Each argument will be a cell in the row // any item can be another html attribute-- the first column here is a BTag object $table->add_row(html_b(rand(1,1000)), rand(2000,3000), rand(3000,4000)); } // update a cells content and attributes-- row and column settings are 0 based $table->set_cell_content(1, 2, 'this cell is special and it will not wrap because we set no wrap above'); $table->set_cell_attributes(1, 2, array('align' => 'right', 'style' => 'background-color:#F00;')); // udate a row $table->set_row_attributes(5, array('align' => 'left')); // set the summary attribute of the table $table->set_summary('the sum of all tables'); // generate the html print $table->render(); ?> |