From b8bae56a26b13f1de7438c3a7db6cc079c16f9bb Mon Sep 17 00:00:00 2001 From: Silvio Date: Mon, 16 Aug 2010 18:00:40 -0300 Subject: Adding field finder test app --- tests/field.php | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 tests/field.php diff --git a/tests/field.php b/tests/field.php new file mode 100644 index 0000000..bf3764d --- /dev/null +++ b/tests/field.php @@ -0,0 +1,50 @@ +form_input_text('code', $code) . $display->form_input_text('entry', $entry); +$display->form($form, 'field.php'); + +// Get a db instance. +$isis = new CinisisDb(); + +// Setup database and entry number. +if ($isis->db) { + // Get the number of entries. + $field = $isis->db->format['fields'][$code]['name']; + $entries = $isis->db->entries(); + $entry--; + + // Query database. + do { + $result = $isis->db->read(++$entry); + if ($entry == $entries) { + break; + } + } while (!isset($result[$field])); + + // Navigation bar. + $display->navbar($entry, $entries, $repetition, '&code='. $code); + + // Format output. + echo "
\n";
+  echo "Selected field: $code: $field.\n";
+  echo "Showing entry $entry from $entries total entries.\n";
+  echo "Repetitions found: ". count($result[$field]) .".\n";
+  echo "\n";
+  print_r($result[$field]);
+  echo '
'; +} + +$display->footer(); +?> -- cgit v1.2.3