PHP Classes

File: example/simple.php

Recommend this page to a friend!
  Classes of Daniel McFeeters   FiForms Framework   example/simple.php   Download  
File: example/simple.php
Role: Example script
Content type: text/plain
Description: Short example script
Class: FiForms Framework
Framework for rapid Web application development
Author: By
Last change: Made Accessible without user login
Date: 19 years ago
Size: 270 bytes
 

Contents

Class file image Download
<?php
 
require_once("FiForms_FiForm.inc.php");
 
$frm = new FiForm("SampleForm", // HTML form name
                   
"FiForms-sample", // Database name
           
"addressbook" // Table Name
           
);
 
$frm->autoinputs();
  echo
$frm->drawFormPage();
?>