devilbox/.devilbox/www/htdocs/mysqlinfo.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2016-11-06 12:36:07 +00:00
<?php require '../config.php'; ?>
2016-10-09 16:47:49 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2016-10-22 14:39:08 +00:00
<?php require '../include/head.php'; ?>
2016-10-09 16:47:49 +00:00
</head>
<body>
2016-10-22 14:39:08 +00:00
<?php require '../include/navigation.php'; ?>
2016-10-09 16:47:49 +00:00
<div class="container">
<h1>MySQL Info</h1>
2016-10-22 17:07:09 +00:00
<br/>
<br/>
2016-10-09 16:47:49 +00:00
<div class="row">
<div class="col-md-12">
<p>For reference see here:</p>
<ul>
<li><a target="_blank" href="https://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html">https://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html</a></li>
<li><a target="_blank" href="https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html">https://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html</a></li>
<li><a target="_blank" href="https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html">https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html</a></li>
</ul>
2016-10-22 15:38:21 +00:00
<table class="table table-striped">
2016-10-22 14:39:08 +00:00
<thead class="thead-inverse">
<tr>
2016-11-06 12:36:07 +00:00
<th>Variable</th>
<th>Value</th>
</tr>
</thead>
<tbody>
2016-11-06 12:36:07 +00:00
<?php foreach ($Docker->MySQL_config() as $key => $val): ?>
<tr>
2016-11-06 12:36:07 +00:00
<td><?php echo $key;?></td>
<td class="break-word"><code><?php echo $val;?></code></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
2016-10-09 16:47:49 +00:00
</div>
</div>
</div><!-- /.container -->
<?php require '../include/footer.php'; ?>
2016-10-09 16:47:49 +00:00
</body>
</html>