forked from blake-nouribekian/codeigniter-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
28 lines (25 loc) · 1.11 KB
/
Copy pathindex.php
File metadata and controls
28 lines (25 loc) · 1.11 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link type="text/css" rel="stylesheet" href="<?php echo base_url(); ?>application/css/jquery.dataTables.css"></link>
<script type="text/javascript" src="<?php echo base_url(); ?>application/js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="<?php echo base_url(); ?>application/js/javascript.js"></script>
<script type="text/javascript" src="<?php echo base_url(); ?>application/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="<?php echo base_url(); ?>application/js/jquery.dataTables.delay.min.js"></script>
</head>
<body>
<table cellpadding="0" cellspacing="0" border="0" id="data" width="100%">
<thead>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody></tbody>
<tfoot></tfoot>
</table>
</body>
</html>