-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathserver.php
50 lines (38 loc) · 1.22 KB
/
server.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
<?php
$host = 'localhost';
$username = 'root';
$password = 'root'; //Your password may be an empty string
$database = 'class_db';
//$conn is our database object
$db = mysqli_connect($host, $username, $password, $database);
if(!$db){
die('Cannot connect to database');
}
$_SESSION["userName"] = "Shannon";
$_SESSION["isAuthenticated"] = false;
if($_POST['login']){
// print_r($_POST);
//Do some verification checks
if($_POST['user_name'] == 'Shannon' && $_POST['user_password'] == 'password'){
$_SESSION["isAuthenticated"] = true;
}
}
include('comments.php');
$sql = "SELECT * FROM comments";
$result = $db->query($sql);
if ($result->num_rows > 0) {
// output data of each row
$rows = array();
while($row = $result->fetch_assoc()) {
array_push($rows,array('id'=>$row['id'], 'name'=>$row['user_name'], 'text'=>$row['text'], 'date'=>$row['date_created']));
}
// $rows = $result ->fetch_assoc();
// echo '<pre>';
// print_r($rows);
// echo '</pre>';
// exit();
} else {
echo "0 results";
}
$db->close();
?>