-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
64 lines (61 loc) · 2.51 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<h3>Daftar Permainan Video Game</h3>
</div>
<div class="row table-responsive">
<p>
<a href="create.php" class="btn btn-success">Create</a>
</p>
<table class="table table-condensed">
<thead>
<tr>
<th>No</th>
<th>Name</th>
<th>Tools</th>
</tr>
</thead>
<tbody>
<?php
$serverName = "tcp:mygamesweb.database.windows.net,1433";
$connectionOptions = array(
"Database" => "permainan", // update me
"Uid" => "alexwibowo", // update me
"PWD" => "08Maret2017" // update me
);
$conn = sqlsrv_connect($serverName, $connectionOptions);
if ($conn === false)
{
die(print_r(sqlsrv_errors() , true));
}
$sql = 'SELECT * FROM game ORDER BY id ASC';
$getResults= sqlsrv_query($conn, $sql);
if ($getResults)
{
while ($row = sqlsrv_fetch_array($getResults)) {
echo '<tr>';
echo '<td>'. $row['id'] . '</td>';
echo '<td><a class="" href="show.php?id='.$row['id'].'">'. $row['nama'] . '</a></td>';
echo '<td width=250>';
echo '<a class="btn btn-success" href="update.php?id='.$row['id'].'">Update</a>';
echo ' ';
echo '<a class="btn btn-danger" href="delete.php?id='.$row['id'].'">Delete</a>';
echo '</td>';
echo '</tr>';
}
}
$conn = null;
?>
</tbody>
</table>
</div>
</div>
</body>
</html>