-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.php
More file actions
48 lines (36 loc) · 973 Bytes
/
Copy pathdb.php
File metadata and controls
48 lines (36 loc) · 973 Bytes
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
<?php
class DBConfig{
private $host = "";
private $username = "";
private $password = "";
private $database = "";
protected $conn;
public function __construct(){
try{
$this->conn = new mysqli($this->host,$this->username,$this->password,$this->database);
}catch (Exception $e){
$error = $e->getMessage();
echo $error;
}
}
}
class DB extends DBConfig{
public function getUserById($id){
$query = "".$id;
$result = mysqli_query($this->conn,$query);
$rows = array();
while($r = mysqli_fetch_array($result,MYSQLI_ASSOC)){
$rows[] = $r;
}
return $rows;
}
public function getUserInfo($id){
$query = "".$id;
$result = mysqli_query($this->conn,$query);
$rows = array();
while($r = mysqli_fetch_array($result,MYSQLI_ASSOC)){
$rows[] = $r;
}
return $rows;
}
}