PHP Classes

File: ex-PgTable.php

Recommend this page to a friend!
  Classes of carex   Form Table PgSQL   ex-PgTable.php   Download  
File: ex-PgTable.php
Role: Example script
Content type: text/plain
Description: example PgTable
Class: Form Table PgSQL
Generate Web forms to access PostgreSQL tables
Author: By
Last change:
Date: 19 years ago
Size: 393 bytes
 

Contents

Class file image Download
<?php
   
require 'object/conf/dbConf.php';
    require
'object/database/dbConnection.php';
    require
'object/table/tableInfo.php';
    require
'object/table/tablePure.php';
   
   
$tbl1 =new tablePure();
   
$db1 =new pgsqldb();
   
   
$tbl1->set_titleTable('Data Table Base');
   
$tbl1->set_titleSizeTable('+2');
   
$tbl1->set_titleColorTable('#FF00FF');
   
   
?>