-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpagination1.php
More file actions
55 lines (48 loc) · 1.22 KB
/
pagination1.php
File metadata and controls
55 lines (48 loc) · 1.22 KB
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
<?php
include("connection.php");
include("pagination.php");
?>
<html lang="en">
<head>
<title>|home</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<table class="table">
<thead>
<tr>
<th>Assets Id</th>
<th>Asset name</th>
<th>Serial No</th>
<th>Model</th>
</thead>
</tr>
<?php
while ($row=mysql_fetch_array($query)){
$f1=$row['Id'];
$f2=$row['AssetName'];
$f3=$row['SerialNo'];
$f4=$row['Model'];
?><tr>
<td><?php echo $f1 ?></td>
<td><?php echo $f2 ?></td>
<td><?php echo $f3 ?></td>
<td><?php echo $f4 ?></td>
</tr>
<?php
}
?>
</table>
</div>
<center><nav>
<ul class="pagination">
<li><a href="#"><?php echo $pagination ;?></a></li>
</ul>
</nav></center>
</body>
</html>