3 |
include_once("localinc.php"); |
include_once("localinc.php"); |
4 |
|
|
5 |
$page = new HTMLPageclass("test3.php"); |
$page = new HTMLPageclass("test3.php"); |
6 |
$page->push_css_link("/phphtmllib/widgets/css/InfoTable.css"); |
$page->add_css_link("/phphtmllib/css/defaulttheme.php"); |
7 |
|
|
8 |
$table = new InfoTable("Some Title Here", "30%", 1); |
$table = new InfoTable("Some Title Here", "60%"); |
|
$td = new TDtag(array("bgcolor"=>"#FF0000") ); |
|
9 |
|
|
10 |
$table->push("Some lame crap"); |
$table->add_row(_HTML_SPACE, "foo", _HTML_SPACE); |
11 |
$table->push(" ", " ", " "); |
$table->add_row("multiple", "crap", "here"); |
12 |
$td->push("Some more crap"); |
$table->add_row("Even more", " ", _HTML_SPACE); |
|
$table->push( $td ); |
|
|
$table->push("multiple", "crap", "here"); |
|
|
$table->push(" "); |
|
|
$table->push("Even more", " "); |
|
|
$table->push(" "); |
|
13 |
|
|
14 |
|
$page->add( $table ); |
|
$page->push( $table ); |
|
15 |
|
|
16 |
print $page->render(); |
print $page->render(); |
17 |
?> |
?> |