diff options
author | Silvio <silvio@devlet.com.br> | 2010-08-18 12:00:21 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-08-18 12:00:21 -0300 |
commit | 70539fe94d67cb4bdde7edce8a26873343d3c240 (patch) | |
tree | 2009cc33ccafa6a6f7c3d66523e6000cca10677d /apps/index.php | |
parent | f7b8ba01cb6cbf78d5e687bd17dc5c571fe6c85e (diff) | |
download | cinisis-70539fe94d67cb4bdde7edce8a26873343d3c240.tar.gz cinisis-70539fe94d67cb4bdde7edce8a26873343d3c240.tar.bz2 |
Moving tests to apps folder
Diffstat (limited to 'apps/index.php')
-rw-r--r-- | apps/index.php | 42 |
1 files changed, 42 insertions, 0 deletions
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 @@ +<?php +/** + * Cinisis - Isis db reading tool. + */ + +// Import requisites. +require_once '../index.php'; + +// Get entry number. +$entry = CinisisHttpHelper::get_numeric_arg('entry'); + +// Draw the document. +$display = new CinisisDisplayHelper('Isis Navigator'); +$display->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 "<pre>\n"; + echo "Showing entry $entry from $entries total entries.\n"; + echo "\n"; + print_r($result); + echo '</pre>'; +} + +$display->footer(); +?> |