PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of MaD   ODBC Basic   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example
Class: ODBC Basic
Retrieve database tables information via ODBC
Author: By
Last change:
Date: 20 years ago
Size: 493 bytes
 

Contents

Class file image Download
<?
// Ejemplo generando tabla de una BD en odbc sin dar datos especificos
include('odbc.php');

$odbc = new t_odbc;

$odbc->db = 'EJEMPLO';
$odbc->user = 'Administrador';
$odbc->password = '';
$odbc->opendb();
//echo $odbc->numtable();
//$arreglo_tablas = $odbc->headtable();
//$i = 0;
//while ($i < count($arreglo_tablas)){
// echo "<center><b>$arreglo_tablas[$i]</b></center><br><br>";
// $odbc->printtable($arreglo_tablas[$i]);
// $i++;
//}

?>