PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Raj Kumar Trivedi   Html 2 Array   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: Html 2 Array
Extract field values from HTML forms
Author: By
Last change: Example Class
Date: 15 years ago
Size: 216 bytes
 

Contents

Class file image Download
<?php
require_once 'html2array.inc.php';
$html = file_get_contents("sample_output.txt");
$parser =& new Html2Array($html);
$result = $parser->parseForms();
echo
"<pre>";
   
print_r($result);
echo
"</pre>";

?>