-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommonconfig.inc.php
More file actions
85 lines (65 loc) · 2.3 KB
/
Copy pathcommonconfig.inc.php
File metadata and controls
85 lines (65 loc) · 2.3 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
<?php
define('DATABASE_HOST', 'localhost'); // Database host
define('DATABASE_NAME', 'amcapp'); // Name of the database to be used
define('DATABASE_USERNAME', 'amcapp'); // User name for access to database
define('DATABASE_PASSWORD', 'SH@ranya9836'); // Password for access to database
define('DB_PREFIX', ''); // Unique prefix of all tables in the database
define('PASSWORDS_ENCRYPTION_TYPE', ''); // AES|MD5
define('PASSWORDS_ENCRYPTION', ''); // true|false
define('PASSWORDS_ENCRYPT_KEY', '');
$connection=mysqli_connect('localhost','amcapp','SH@ranya9836','amcapp');
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
mysqli_select_db($connection,'amcapp');
class DBController
{
private $host = "localhost";
private $user = "amcapp";
private $password = "SH@ranya9836";
private $database = "amcapp";
private $conn;
function __construct()
{
$this->conn = $this->connectDB();
}
function connectDB()
{
$conn = mysqli_connect($this->host, $this->user, $this->password, $this->database);
return $conn;
}
function runQuery($query, $param_type, $param_value_array)
{
$sql = $this->conn->prepare($query);
$this->bindQueryParams($sql, $param_type, $param_value_array);
$sql->execute();
$result = $sql->get_result();
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$resultset[] = $row;
}
}
if (! empty($resultset)) {
return $resultset;
}
}
function bindQueryParams($sql, $param_type, $param_value_array)
{
$param_value_reference[] = & $param_type;
for ($i = 0; $i < count($param_value_array); $i ++) {
$param_value_reference[] = & $param_value_array[$i];
}
call_user_func_array(array(
$sql,
'bind_param'
), $param_value_reference);
}
function insert($query, $param_type, $param_value_array)
{
$sql = $this->conn->prepare($query);
$this->bindQueryParams($sql, $param_type, $param_value_array);
$sql->execute();
}
}