Parent Directory | Revision Log
+ updated whole phphtmllib to v2.3.0
1 | <?php |
2 | |
3 | include_once("localinc.php"); |
4 | |
5 | $page = new HTMLPageClass("test #4"); |
6 | |
7 | $form_attributes = array( "name" => "myform", |
8 | "method" => "GET", |
9 | "action" => $_SERVER["PHP_SELF"]); |
10 | |
11 | $form = new FORMtag( $form_attributes ); |
12 | |
13 | $form->add( form_text("test", "testing",15,10) ); |
14 | $form->add( form_button("test", "testing" ) ); |
15 | $form->add( form_submit("test", "testing" ) ); |
16 | |
17 | $page->add( $form ); |
18 | |
19 | |
20 | print $page->render(); |
21 | ?> |
MailToCvsAdmin">MailToCvsAdmin | ViewVC Help |
Powered by ViewVC 1.1.26 |