Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDB.php
More file actions
Latest commit
88 lines (69 loc) · 2.21 KB
/
Copy pathDB.php
File metadata and controls
88 lines (69 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
classDB {
/**
* private variables
*/
private$user;
private$password;
private$database;
private$server;
private$_handle = NULL;
/**
* public variables
*/
public$error;
public$sql;
public$result;
/*
* this is a constructor, a function
* that loads when an object of a class is created
* here constructor initializes the database connectivity variables
*/
/*
function __construct($server, $user, $password, $database) {
$this->server = $server;
$this->user = $user;
$this->password = $password;
$this->database = $database;
if(!$this->connection = mysql_connect($this->server,$this->user,$this->password)) {
throw new Exception('<font color="red">ERROR :: COULD NOT ESTABLISH A CONNECTION: '.mysql_error().'</font>', self::CONNECTION_ERROR);
}else {
if(!mysql_select_db($this->database)) {
throw new Exception('<font color="red">ERROR :: COULD NOT FIND A DATABASE : '.mysql_error().'</font>', self::CONNECTION_ERROR);
}
}
}
*/
functionConnect($server, $user, $password, $database) {
$this->server = $server;
$this->user = $user;
$this->password = $password;
$this->database = $database;
if(!$this->connection = mysql_connect($this->server,$this->user,$this->password,$this->database)) {
thrownewException('<font color="red">ERROR :: COULD NOT ESTABLISH A CONNECTION: '.mysql_error().'</font>', self::CONNECTION_ERROR);
}else {
if(!mysql_select_db($this->database)) {
thrownewException('<font color="red">ERROR :: COULD NOT FIND A DATABASE : '.mysql_error().'</font>', self::CONNECTION_ERROR);
}elsereturnmysql_select_db($this->database);
}
}
privatefunction__construct($server,$user,$password, $database) {
//$dsn = 'mysql://root:password@localhost/photos'; die;
$this->_handle =& DB::Connect($server,$user,$password, $database);
}
publicstaticfunctionget() {
$user = "root";
$password = "";
$database= "db_pyrocms";
$server = "localhost";
static$db = null;
if ( $db == null )
$db = newDB($server,$user,$password, $database);
return$db;
}
publicfunctionhandle() {
echo$this->_handle;
}
function__destruct(){}
}
?>