diff options
Diffstat (limited to 'tests/index.php')
-rw-r--r-- | tests/index.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/index.php b/tests/index.php index f17cae5..c2b2e9d 100644 --- a/tests/index.php +++ b/tests/index.php @@ -44,12 +44,14 @@ if ($isis->db) { if ($entry != 1) { $prev = $entry - 1; + echo '<a href="index.php?entry=1">first</a> '; echo '<a href="index.php?entry='. $prev .'">< prev</a> '; } if ($entry < $entries) { $next = $entry + 1; - echo '<a href="index.php?entry='. $next .'">next ></a>'; + echo '<a href="index.php?entry='. $next .'">next ></a> '; + echo '<a href="index.php?entry='. $entries .'">last</a>'; } // Format output. |