PHP Classes

File: example/sample_subform.php

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

Contents

Class file image Download
<?php
 
require_once("FiForms_FiForm.inc.php"); // call the include file
 
 
$frm = new FiForm("SampleForm", // Form Name
           
"FiForms_sample", // Database
           
"familymembers" // Table Name
           
);

 
$frm->autoinputs();
 
$frm->caption = " ";
 
$frm->addIn('iLinkBack');

  echo
$frm->drawFormPage(); // output the form
 
?>