aboutsummaryrefslogtreecommitdiff
path: root/test/components/results.php
diff options
context:
space:
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>