PHP Classes

File: examples/demo_03.php

Recommend this page to a friend!
  Classes of J.   HTML SQL   examples/demo_03.php   Download  
File: examples/demo_03.php
Role: Example script
Content type: text/plain
Description: Example 3 - Shows how to connect to a file and a simple query
Class: HTML SQL
Parse and extract information from HTML using SQL
Author: By
Last change:
Date: 17 years ago
Size: 800 bytes
 

Contents

Class file image Download
<?php

   
/*
    ** htmlSQL - Example 3
    **
    ** Shows how to connect to a file and a simple query
    */

   
include_once("../snoopy.class.php");
    include_once(
"../htmlsql.class.php");
   
   
$wsql = new htmlsql();
   
   
// connect to a file
   
if (!$wsql->connect('file', 'demo_data.htm')){
        print
'Error while connecting: ' . $wsql->error;
        exit;
    }
   
   
/* execute a query:
      
       This query searches in all tags for the id == header and returns
       the tag
    */
   
if (!$wsql->query('SELECT * FROM * WHERE $id == "header"')){
        print
"Query error: " . $wsql->error;
        exit;
    }

   
// show results:
   
foreach($wsql->fetch_array() as $row){
   
       
print_r($row);
       
    }
   
?>