blob: def09b1ed43293b907a645ccf0e4257e71e4439b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>
|