-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbclass.php
74 lines (60 loc) · 1.67 KB
/
dbclass.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
<?php
/*
Author:Minhazul Min
Website: https://minhazulmin.github.io/
*/
// Start Database Class
$db_host = 'localhost';
$db_name = 'stripe';
$username = 'root';
$password = '';
$con = mysqli_connect( "$db_host", "$username", "$password" );
mysqli_select_db( $con, "$db_name" ) or die( "cannot select DB" );
class DB {
// Connect to server and select databse.
private $dbh;
private $error;
private $stmt;
public function query( $query ) {
$this->stmt = $this->dbh->prepare( $query );
}
public function bind( $param, $value, $type = null ) {
if ( is_null( $type ) ) {
switch ( true ) {
case is_int( $value );
$type = PDO::PARAM_INT;
break;
case is_bool( $value );
$type = PDO::PARAM_BOOL;
break;
case is_null( $value );
$type = PDO::PARAM_NULL;
break;
default;
$type = PDO::PARAM_STR;
}
}
$this->stmt->bindValue( $param, $value, $type );
}
public function execute( $array = null ) {
return $this->stmt->execute( $array );
}
public function lastInsertId() {
return $this->dbh->lastInsertId();
}
public function rowCount() {
return $this->stmt->rowCount();
}
public function result( $array = null ) {
$this->execute( $array );
return $this->stmt->fetch();
}
public function resultSet( $array = null ) {
$this->execute( $array );
return $this->stmt->fetchAll( PDO::FETCH_ASSOC );
}
public function close() {
return $this->dbh = null;
}
}
?>