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:
20
test/components/results.php
Normal file
20
test/components/results.php
Normal 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>
|
Reference in New Issue
Block a user