Login   Register  
PHP Classes
elePHPant
Icontem

File: formClientValidated.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Herman Veluwenkamp  >  xmlForm  >  formClientValidated.php  >  Download  
File: formClientValidated.php
Role: ???
Content type: text/plain
Description: Client Validation Example
Class: xmlForm
Generates a form in HTML.
Author: By
Last change:
Date: 2002-02-26 00:19
Size: 1,099 bytes
 

Contents

Class file image Download
<html>
<head><title>form template test</title>
<style>
body,td,select,textarea,input,pre
              { font: 9pt "arial", "helvetica", sans-serif; }
</style>
<script language="javascript" src="formClientValidated.js"></script>
</head>
<body>

<?php
include 'xmlForm.php';

$xslClientJSArray  = join('', file('formClientValidatedJsArray.xsl'));
$xslForm           = join('', file('formClientValidated.xsl'));
$xmlConfig         = join('', file('formDataConfig.xml'));

$xmlForm  = new xmlForm($xmlConfig);

// prepare javascript array for client-side validation
$result = $xmlForm->xslTransform($xslClientJSArray, array()); 
if ($result) print $xmlForm->output;

// do server-side validation as backup to client-side
$data = $HTTP_GET_VARS;
if (!empty($data)) {
  $result     = $xmlForm->validate($data);
  if (!$result) print "<h2>Validation Error</h2>";
  else print "<h2>Data OK</h2>";
}

// prepare html form for display
$result = $xmlForm->xslTransform($xslForm, array());
if ($result) print $xmlForm->output;
else print $xmlForm->error;
?>
</body>
</html>