PHP Classes

File: exemples/demo_1.php

Recommend this page to a friend!
  Classes of Wesley David   wdForm   exemples/demo_1.php   Download  
File: exemples/demo_1.php
Role: Example script
Content type: text/plain
Description: Unit test script
Class: wdForm
Generate and process HTML forms
Author: By
Last change: Update of exemples/demo_1.php
Date: 1 year ago
Size: 679 bytes
 

Contents

Class file image Download
<?php
   
require_once "../wdForm-1.0/wdForm.php";

   
$objForm = new wdForm();
   
$objForm->nome_label = 'Nome Completo';

    if(
$objForm->checkSubmit() ){

        echo
"<h3>Sucesso</h3>";

        echo
$objForm->nome_checked;

       
$objForm->db->insert();

    }


   
$form = $objForm->createForm( 'Basic.xml' );



?>

<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="content-type" content="text/html" />
    <meta charset="UTF-8">
    <title>Formulário wdForm</title>
    <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
    <script type="text/javascript" src="js/bootstrap.js"></script>
</head>

<body>
   
    <h1>Criando um formulário de forma simples</h1>
   
    <?php echo $form; ?>

</body>
</html>