Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2004-07-19 08:36
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++;
//}

?>