-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_table.php
More file actions
59 lines (56 loc) · 1.84 KB
/
Copy pathlist_table.php
File metadata and controls
59 lines (56 loc) · 1.84 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
56
57
58
59
<?php
$list_tables = array(
'rp_brand_name',
'rp_commentmeta',
'rp_comments',
'rp_doisoat_cskh',
'rp_doi_tac',
'rp_gia_ban',
'rp_gia_ban_logs',
'rp_hop_dong',
'rp_khach_hang',
'rp_lien_he_khach_hang',
'rp_links',
'rp_nhom',
'rp_options',
'rp_postmeta',
'rp_posts',
'rp_termmeta',
'rp_terms',
'rp_term_relationships',
'rp_term_taxonomy',
'rp_tongquat_cskh',
'rp_tratruoc_naptien',
'rp_tratruoc_sanluong',
'rp_usermeta',
'rp_users'
);
?>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/js/bootstrap.min.js"></script>
<div class="row">
<div class="col-xs-2"></div>
<div class="col-xs-8">
<div class="panel panel-default">
<div class="panel-body">
<table class="table table-striped">
<tr>
<th style="text-align: center; " colspan="2">List các bảng</th>
</tr>
<tr>
<th>Tên bảng</th>
<th></th>
</tr>
<?php foreach( $list_tables as $list ) : ?>
<tr>
<td><?= $list ?></td>
<td><a class="btn btn-default" href="builder.php?table=<?= $list ?>">Builder</a></td>
</tr>
<?php endforeach; ?>
</table>
</div>
</div>
</div>
<div class="col-xs-2"></div>
</div>