PHP Classes

File: file_example.php

Recommend this page to a friend!
  Classes of Arturo Di Lecce   Fast HTML form creator and validator   file_example.php   Download  
File: file_example.php
Role: Example script
Content type: text/plain
Description: file example of the class usage
Class: Fast HTML form creator and validator
Generate and validate Web forms
Author: By
Last change:
Date: 17 years ago
Size: 390 bytes
 

Contents

Class file image Download
<?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();
?>