Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2009-05-18 03:07
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>";

?>