me
/
DB-Xplorer
Archived
1
0
Fork 0
This repository has been archived on 2019-05-31. You can view files and clone it, but cannot push or open issues/pull-requests.
DB-Xplorer/pages/schema.php

10 lines
376 B
PHP

<h2>Schema</h2>
<?php if(printCheck(checkSchema($_schema))): ?>
<p><?= $_schema ?></p>
<table>
<tr><th>Table</th></tr>
<?php foreach(getTablesListBySchema($_schema) as $table):?>
<tr><td><a href="?page=table&schema=<?= $_schema ?>&table=<?= $table ?>"><?= $table ?></a></td></tr>
<?php endforeach ?>
</table>
<?php endif ?>