| 1 |
<?php |
| 2 |
|
| 3 |
include_once("localinc.php"); |
| 4 |
|
| 5 |
$page = new HTMLPageClass("test.php"); |
| 6 |
$page->set_text_debug( $debug ); |
| 7 |
|
| 8 |
$page->push( html_a($PHP_SELF."?debug=1", "DEBUG ME"), html_br() ); |
| 9 |
|
| 10 |
$filedir = $phphtmllib."/test/pngs"; |
| 11 |
$urldir = "pngs"; |
| 12 |
|
| 13 |
$thumbs = new ImageThumbnailTable( 760, 5, $filedir, $urldir ); |
| 14 |
//get the link to the widget's css file. |
| 15 |
//$page->push_css_link( $nav->get_css_file() ); |
| 16 |
$thumbs->set_thumbnail_script( "/phphtmllib/test/thumbnail.php" ); |
| 17 |
|
| 18 |
$page->push( $thumbs ); |
| 19 |
|
| 20 |
|
| 21 |
print $page->render(); |
| 22 |
?> |