17 lines
533 B
PHP
17 lines
533 B
PHP
<!DOCTYPE HTML>
|
|
<html>
|
|
<title>Ajax table pagination with MySQL, PHP and jQuery - InfoTuts</title>
|
|
<head>
|
|
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
|
|
</head>
|
|
<body>
|
|
<div id="mhead"><h2>Ajax table pagination with MySQL, PHP and jQuery - InfoTuts</h2></div>
|
|
<div id="pagination" cellspacing="0">
|
|
<?php include('dbmanupulate.php');?>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="script.js"></script>
|
|
</body>
|
|
</html>
|