aboutsummaryrefslogtreecommitdiff
path: root/test/components/results.php
diff options
context:
space:
mode:
authorValentin Popov <dev@valentineus.link>2016-09-21 05:40:03 +0300
committerValentin Popov <dev@valentineus.link>2016-09-21 05:40:03 +0300
commitb9628f189b0ca2f7c411bd79566da37c73cc8e8f (patch)
tree01122bdea534d9cad15a63a271f87f742092b31f /test/components/results.php
parent288980ceb35d5ace51284cfdf176e9acb5f7bb39 (diff)
downloadiii-module-b9628f189b0ca2f7c411bd79566da37c73cc8e8f.tar.xz
iii-module-b9628f189b0ca2f7c411bd79566da37c73cc8e8f.zip
Demo in beta mode.
Diffstat (limited to 'test/components/results.php')
-rw-r--r--test/components/results.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/components/results.php b/test/components/results.php
deleted file mode 100644
index def09b1..0000000
--- a/test/components/results.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<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>