From 70539fe94d67cb4bdde7edce8a26873343d3c240 Mon Sep 17 00:00:00 2001 From: Silvio Date: Wed, 18 Aug 2010 12:00:21 -0300 Subject: Moving tests to apps folder --- apps/index.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 apps/index.php (limited to 'apps/index.php') diff --git a/apps/index.php b/apps/index.php new file mode 100644 index 0000000..b395b80 --- /dev/null +++ b/apps/index.php @@ -0,0 +1,42 @@ +form($display->form_input_text('entry', $entry)); + +// Get a db instance. +$isis = new CinisisDb(); + +// Setup database and entry number. +if ($isis->db) { + // Get the number of entries. + $entries = $isis->db->entries(); + + // Input sanitization. + if ($entries < $entry) { + $entry = 1; + } + + // Query database. + $result = $isis->db->read($entry); + $display->navbar($entry, $entries); + + // Format output. + echo "
\n";
+  echo "Showing entry $entry from $entries total entries.\n";
+  echo "\n";
+  print_r($result);
+  echo '
'; +} + +$display->footer(); +?> -- cgit v1.2.3