Login   Register  
PHP Classes
elePHPant
Icontem

File: examples/example_array.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Chara Miteo  >  ApPHP Data Validator  >  examples/example_array.php  >  Download  
File: examples/example_array.php
Role: Example script
Content type: text/plain
Description: Example file
Class: ApPHP Data Validator
Validate sets of values in different ways
Author: By
Last change:
Date: 2012-04-19 02:57
Size: 1,660 bytes
 

Contents

Class file image Download
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <title>ApPHP DataValidator :: Static Data</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
    <meta name='keywords' content='php data validator, php datavalidator, php validate data, form validation' />
    <meta name='description' content='Advanced Power of PHP - using of ApPHP DataValidator' />
    <meta content='Advanced Power of PHP' name='author'></meta>
    <style type="text/css">
        BODY { padding:15px; }
        #upper { margin-top:10px; }
        .example_div { display: inline; width: 49%; vertical-align: top; }
        .header { text-align: center; font-size: 16px; font-weight: bold; height: 25px; vertical-align: top; text-align:left; }
        .initial_code { width:95%; height:800px; overflow:auto; padding:10px; 5px; border:1px solid #cccccc;}
    </style>
</head>
<body>

    <a href="index.php">Back to Index Page</a>
    <div id="upper">
    <div class="example_div" style="float: left; padding-right: 10px">
        <div class="header">Initial code</div>
        <div class="initial_code">            
            <?php
                $content 
file_get_contents("example_array_script.php"nullnull6);
                echo 
'<pre>'.$content.'</pre>';
            
?>
        </div>
        <br /><br />    
    </div>
    <div class="example_div">
        <div class="header">Output</div>
        <div>
            <?php include_once "example_array_script.php"?>
        </div>
    </div>
    </div>
    
</body>
</html>