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/field.php | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 apps/field.php (limited to 'apps/field.php') diff --git a/apps/field.php b/apps/field.php new file mode 100644 index 0000000..b9f9c3a --- /dev/null +++ b/apps/field.php @@ -0,0 +1,51 @@ +form_input_text('entry', $entry); +$form .= $display->form_input_text('field', $field); +$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_name = $isis->db->format['fields'][$field]['name']; + $entries = $isis->db->entries(); + $entry--; + + // Query database. + do { + $result = $isis->db->read(++$entry); + if ($entry == $entries) { + break; + } + } while (!isset($result[$field_name])); + + // Navigation bar. + $display->navbar($entry, $entries, $repetition, '&field='. $field); + + // Format output. + echo "
\n";
+  echo "Selected field: $field: $field_name.\n";
+  echo "Showing entry ". $display->entry_link($entry) ." from $entries total entries.\n";
+  echo "Repetitions found: ". count($result[$field_name]) .".\n";
+  echo "\n";
+  print_r($result[$field_name]);
+  echo '
'; +} + +$display->footer(); +?> -- cgit v1.2.3