1 |
jonen |
1.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 |
|
|
$thumbs->set_thumbnail_script( "/phphtmllib/test/thumbnail.php" ); |
16 |
|
|
|
17 |
|
|
$page->push( $thumbs ); |
18 |
|
|
|
19 |
|
|
|
20 |
|
|
print $page->render(); |
21 |
|
|
?> |