34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lnag="en">
|
|
<head>
|
|
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
|
|
</head>
|
|
<body>
|
|
<nav class='navbar navbar-default'>
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
|
|
</div>
|
|
</nav>
|
|
<div class="col-md-3"></div>
|
|
<div class="col-md-6 well">
|
|
<h3 class="text-primary">PHP - Simple Data Getter Using SQLite&Ajax</h3>
|
|
<hr style="border-top:1px dotted #ccc;"/>
|
|
<button type="button" class="btn btn-primary" id="btn_display"><span class="glyphicon glyphicon-book"></span> Display Data</button>
|
|
<br /><br />
|
|
<table class="table table-bordered">
|
|
<thead class="alert-info">
|
|
<tr>
|
|
<th>Firstname</th>
|
|
<th>Lastname</th>
|
|
<th>Gender</th>
|
|
<th>Age</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody style="background-color:#fff;" id="result"></tbody>
|
|
</table>
|
|
</div>
|
|
<script src="js/jquery-3.2.1.min.js"></script>
|
|
<script src="js/script.js"></script>
|
|
</body>
|
|
</html> |