📄 myTest.classes.php

Size: 572 bytes
Path: /home/islandholiday/public_html/admin/panel/OLD/myTest.classes.php
Modified: 2020-09-29 20:48:04
<?php 

include_once "myform.classes.php";

$form = new Myform();

 $frmStr = $form->startForm('result.php', 'post',
            array('class'=>'demoForm', 'onsubmit'=>'return checkBeforeSubmit(this)') );
            
            $form->textInput('First Name','Enter First Name');
            $form->textInput('Last Name','Enter Last Name');
            $form->textAreaInput('textareaa','','Enter any text here');
            $form->radioInput(2,'gender');






// $open = $form->openForm();
// echo  $form->textInput('First Name','Enter Your First Name');
// $close = $form->closeForm();

 ?>