Skip to content

Commit 936c64e

Browse files
committedJan 4, 2016
First commit v1.0
1 parent 4b69bf8 commit 936c64e

File tree

2 files changed

+46
-3
lines changed

2 files changed

+46
-3
lines changed
 

‎js/config.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
define("__HOST__", "localhost");
3-
define("__USER__", "root");
4-
define("__PASS__", "meAxel9@4!");
3+
define("__USER__", "");
4+
define("__PASS__", "");
55
define("__BASE__", "project");
66

77
class DB {
@@ -40,4 +40,4 @@ public function qryFire($sql=null) {
4040
return $this->data;
4141
}
4242
}
43-
?>
43+
?>

‎js/config.php~

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php
2+
define("__HOST__", "localhost");
3+
define("__USER__", "root");
4+
define("__PASS__", "meAxel9@4!");
5+
define("__BASE__", "project");
6+
7+
class DB {
8+
private $con = false;
9+
private $data = array();
10+
11+
public function __construct() {
12+
$this->con = new mysqli(__HOST__, __USER__, __PASS__, __BASE__);
13+
14+
if($this->con->connection_error) {
15+
die("DB connection failed:" . $con->connection_error);
16+
}
17+
}
18+
19+
public function qryPop() {
20+
$sql = "SELECT * FROM `blogs` ORDER BY `id` DESC";
21+
$qry = $this->con->query($sql);
22+
if($qry->num_rows > 0) {
23+
while($row = $qry->fetch_object()) {
24+
$this->data[] = $row;
25+
}
26+
} else {
27+
$this->data[] = null;
28+
}
29+
$this->con->close();
30+
}
31+
32+
public function qryFire($sql=null) {
33+
if($sql == null) {
34+
$this->qryPop();
35+
} else {
36+
$this->con->query($sql);
37+
$this->qryPop();
38+
}
39+
$this->con->close();
40+
return $this->data;
41+
}
42+
}
43+
?>

0 commit comments

Comments
 (0)
Please sign in to comment.