0
mirror of https://github.com/valentineus/iii-module.git synced 2025-07-01 11:00:27 +03:00

Alpha version

This commit is contained in:
valentineus
2016-09-14 01:30:05 +04:00
parent 4d0e9148a3
commit 288980ceb3
11 changed files with 362 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<div class="row">
<div class="col-md-12">
<table class="table table-striped">
<tr>
<th>#</th>
<th>Text</th>
<th>Date</th>
</tr>
<?php
if (isset($current_id)) {
ShowRecord($current_id);
} elseif (isset($_COOKIE['CURRENT_ID'])) {
ShowRecord((int)$_COOKIE['CURRENT_ID']);
} else {
echo("Error!");
}
?>
</table>
</div>
</div>