Guest User

Untitled

a guest
Dec 11th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?PHP
  2. include("./lib/class.forms.php");
  3. $f = new form();
  4. $f->formname = "myform";
  5. $f->method = "GET";
  6. $f->action = "nothing.php";
  7. $text1 = new form_input_text("name","Name");
  8. $text2 = new form_input_text("title","Title");
  9. $inputs = array($text1,$text2);
  10. $f->print_form($inputs);
  11. ?>
Add Comment
Please, Sign In to add comment