mysql-database-class
Code (php)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?
class db
{
function db ()
{
$user = "usr";
$pass = "pass";
$host = "localhost";
$dbdb = "dbnaam";
if (!@mysql_select_db($dbdb, @mysql_connect($host, $user, $pass)))
{
echo "Could not establish a database connection.";
exit();
}
}
function dbexec ($sql)
{
$res = mysql_query($sql) or die(mysql_error());
return $res;
}
function dblastid ()
{
$res = mysql_insert_id();
return $res;
}
function dbinsert ($table, $values)
{
$sql = "INSERT INTO ";
$sql .= $table;
$sql .= " SET ";
foreach ($values as $key => $value)
{
if ($key != "submit")
{
if (!$keys)
{
$keys = 1;
$sql .= $key . " = '" . $value . "'";
}
else
$sql .= ", " . $key . " = '" . $value . "'";
}
}
$res = $this->dbexec($sql);
return $res;
}
function dbarray ($res)
{
$row = mysql_fetch_array($res);
return $row;
}
function dbselect ($fields, $table, $array = '', $where = '', $order = '', $limit = '')
{
$sql = "SELECT ";
$sql .= $fields;
$sql .= " FROM ";
$sql .= $table;
//--- where clause
if ($where)
{
$sql .= " WHERE ";
$sql .= $where;
}
//--- order clause
if ($order)
{
$sql .= " ORDER BY ";
$sql .= $order;
}
//--- limit clause
if ($limit)
{
$sql .= " LIMIT ";
$sql .= $limit;
}
$res = $this->dbexec($sql);
if ($array)
$res = $this->dbarray($res);
return $res;
}
function dbnumrows($result)
{
if (mysql_num_rows($result) >= 1)
return mysql_num_rows($result);
}
function dbupdate ($table, $values, $where = '')
{
$sql = "UPDATE ";
$sql .= $table;
$sql .= " SET ";
foreach ($values as $key => $value)
{
if ($key != "submit")
{
if (!$keys)
{
$keys = 1;
$sql .= $key . " = '" . $value . "'";
}
else
$sql .= ", " . $key . " = '" . $value . "'";
}
}
if ($where)
{
$sql .= " WHERE ";
$sql .= $where;
}
$res = $this->dbexec($sql);
return $res;
}
}
?>
class db
{
function db ()
{
$user = "usr";
$pass = "pass";
$host = "localhost";
$dbdb = "dbnaam";
if (!@mysql_select_db($dbdb, @mysql_connect($host, $user, $pass)))
{
echo "Could not establish a database connection.";
exit();
}
}
function dbexec ($sql)
{
$res = mysql_query($sql) or die(mysql_error());
return $res;
}
function dblastid ()
{
$res = mysql_insert_id();
return $res;
}
function dbinsert ($table, $values)
{
$sql = "INSERT INTO ";
$sql .= $table;
$sql .= " SET ";
foreach ($values as $key => $value)
{
if ($key != "submit")
{
if (!$keys)
{
$keys = 1;
$sql .= $key . " = '" . $value . "'";
}
else
$sql .= ", " . $key . " = '" . $value . "'";
}
}
$res = $this->dbexec($sql);
return $res;
}
function dbarray ($res)
{
$row = mysql_fetch_array($res);
return $row;
}
function dbselect ($fields, $table, $array = '', $where = '', $order = '', $limit = '')
{
$sql = "SELECT ";
$sql .= $fields;
$sql .= " FROM ";
$sql .= $table;
//--- where clause
if ($where)
{
$sql .= " WHERE ";
$sql .= $where;
}
//--- order clause
if ($order)
{
$sql .= " ORDER BY ";
$sql .= $order;
}
//--- limit clause
if ($limit)
{
$sql .= " LIMIT ";
$sql .= $limit;
}
$res = $this->dbexec($sql);
if ($array)
$res = $this->dbarray($res);
return $res;
}
function dbnumrows($result)
{
if (mysql_num_rows($result) >= 1)
return mysql_num_rows($result);
}
function dbupdate ($table, $values, $where = '')
{
$sql = "UPDATE ";
$sql .= $table;
$sql .= " SET ";
foreach ($values as $key => $value)
{
if ($key != "submit")
{
if (!$keys)
{
$keys = 1;
$sql .= $key . " = '" . $value . "'";
}
else
$sql .= ", " . $key . " = '" . $value . "'";
}
}
if ($where)
{
$sql .= " WHERE ";
$sql .= $where;
}
$res = $this->dbexec($sql);
return $res;
}
}
?>