PHP Classes

File: php4x/_class_db_bibivu.php

Recommend this page to a friend!
  Classes of Fabrizio Parrella   db_bibivu   php4x/_class_db_bibivu.php   Download  
File: php4x/_class_db_bibivu.php
Role: Configuration script
Content type: text/plain
Description: variables for the class for php4
Class: db_bibivu
Simple MySQL database access wrapper
Author: By
Last change: update
Date: 18 years ago
Size: 681 bytes
 

Contents

Class file image Download
<?php
class db_bibivu_vars {
    var
$database = '';
   
    var
$link_id = 0;
    var
$query_id = 0;
    var
$record = array();
   
    var
$errdesc = '';
    var
$errno = 0;
    var
$show_error = 1;
    var
$die_error = 1;
   
    var
$server = '';
    var
$user = '';
    var
$password = '';
   
    var
$log = 0; //abilita il file log
   
var $filelog = ''; //nome del file log
   
   
var $appname = 'DataBase Managment';
    var
$admin_email = '';
   
    var
$debug = 0;
    var
$total_time = 0;
    var
$db_accesses = 0;
   
    var
$substitute = array();

    var
$SQL_CACHE = 1; //if = 1, will add SQL_CACHE to all the select queries
   
   
var $in_trans = false; //if I am into a transaction
}
?>