<?php
/*
In the file, the first row is the form configuration (action,name,id,method),
the second row is an example of form fields, and
the last row is the submit button configuration.
other rows are the form fields.
See 'example.frm.txt' for more details.
*/
include("fast_form.class.php");
$o = new fast_form();;
$o->from_file("example.frm.txt");
$o->make();
?>
|