-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyblogGetData.php
42 lines (40 loc) · 1.01 KB
/
myblogGetData.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
<?php
class Post{
public $postno = 0;
public $poster = "";
public $message = "";
public $time = "";
public $likes = "";
public function __construct($postno, $poster, $message, $time, $likes) {
$this->postno = $postno;
$this->poster = $poster;
$this->message = $message;
$this->time = $time;
$this->likes = $likes;
}
}
$start = $_GET["start"];
$yo = $start+3;
$con = mysqli_connect("localhost:3306", "root", "", "blog");
if($con)
{
//echo "Connected to DB";
$sql = "Select * from posts where postno >= $start and postno <= $yo";
$result = $con->query($sql);
$count = $start;
$data = array();
while($row = $result->fetch_assoc() )
{
$count -= 1;
$temp = new Post($row["postno"], $row["poster"], $row["blogmessage"], $row["time"], $row["likes"]);
array_push($data, $temp);
}
//echo $data[0]->postno;
//
echo json_encode($data);
}
else
{
echo "Jai Balayya";
}
?>