Update _test folder
This commit is contained in:
34
_test/ajax/ajax-sqlite-read/index.php
Normal file
34
_test/ajax/ajax-sqlite-read/index.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user