Login   Register  
PHP Classes
elePHPant
Icontem

File: fill.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Anderson Manuel  >  Show any MySQL table  >  fill.php  >  Download  
File: fill.php
Role: Example script
Content type: text/plain
Description: bridge to object class
Class: Show any MySQL table
Retrieve data from a MySQL table into XML
Author: By
Last change:
Date: 2009-08-12 03:01
Size: 249 bytes
 

Contents

Class file image Download
<?php
 
include('read_tables.php');
  
$host $_POST['host'];
  
$user $_POST['user'];
  
$pass $_POST['pass'];
    
$database $_POST['database'];
  
$table $_POST['table'];
 
$test = new read_tables($host,$user,$pass,$database,$table);
 
?>