PHP Classes

File: fill.php

Recommend this page to a friend!
  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: 14 years ago
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);
 
?>