/home/mjc1/public_html/html/adminmobile/class_opdb2.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?
 
class DBOP2
{
    var 
$dbop2_host;
    var 
$dbop2_name;
    var 
$dbop2_user;
    var 
$dbop2_pass;
    var 
$debug_mode;
    
    function 
DBOP2($dbop2_host,$dbop2_name,$dbop2_user,$dbop2_pass,$debug_mode='1')
    {
        
$this->dbop2_host    $dbop2_host;
        
$this->dbop2_name    $dbop2_name;
        
$this->dbop2_user    $dbop2_user;
        
$this->dbop2_pass    $dbop2_pass;
        
$this->debug_mode $debug_mode;
        
$this->connect    = @mysql_connect($this->dbop2_host,$this->dbop2_user,$this->dbop2_pass);
        @
mysql_select_db($this->dbop2_name,$this->connect);
    }

              
}
?>