devilbox/.devilbox/www/htdocs/db_memcd.php

49 lines
1017 B
PHP
Raw Normal View History

2016-11-15 18:39:11 +00:00
<?php require '../config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
2017-05-15 06:56:17 +00:00
<?php echo loadClass('Html')->getHead(); ?>
2016-11-15 18:39:11 +00:00
</head>
<body>
2017-05-15 06:56:17 +00:00
<?php echo loadClass('Html')->getNavbar(); ?>
2016-11-15 18:39:11 +00:00
<div class="container">
2017-05-07 16:49:38 +00:00
<h1>Memcached Keys</h1>
2016-11-15 18:39:11 +00:00
<br/>
<br/>
<div class="row">
<div class="col-md-12">
2017-05-15 06:56:17 +00:00
<?php if (!loadClass('Memcd')->isAvailable()): ?>
<p>Memcached container is not running.</p>
2017-05-08 07:43:43 +00:00
<?php else: ?>
<table class="table table-striped ">
<thead class="thead-inverse ">
2016-11-15 18:39:11 +00:00
<tr>
2017-05-08 07:43:43 +00:00
<th>Key</th>
<th>Value</th>
</th>
</thead>
<tbody>
<?php foreach (loadClass('Memcd')->getKeys() as $data): ?>
<tr>
<td><?php print_r($data['key']);?></td>
<td><?php print_r($data['value']);?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php endif; ?>
2016-11-15 18:39:11 +00:00
</div>
</div>
</div><!-- /.container -->
2017-05-15 06:56:17 +00:00
<?php echo loadClass('Html')->getFooter(); ?>
2016-11-15 18:39:11 +00:00
</body>
</html>