aboutsummaryrefslogtreecommitdiff
path: root/apps/phpisis.php
diff options
context:
space:
mode:
authorSilvio <silvio@devlet.com.br>2010-08-18 12:01:13 -0300
committerSilvio <silvio@devlet.com.br>2010-08-18 12:01:13 -0300
commiteb217536079197bd1d17cda2c2adf4ba12bad504 (patch)
treeaa69b49fe3769430c9902fa1bc999c06aed58012 /apps/phpisis.php
parent70539fe94d67cb4bdde7edce8a26873343d3c240 (diff)
downloadcinisis-eb217536079197bd1d17cda2c2adf4ba12bad504.tar.gz
cinisis-eb217536079197bd1d17cda2c2adf4ba12bad504.tar.bz2
Moving some apps to the samples folder
Diffstat (limited to 'apps/phpisis.php')
-rw-r--r--apps/phpisis.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/apps/phpisis.php b/apps/phpisis.php
deleted file mode 100644
index 75326f1..0000000
--- a/apps/phpisis.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-/**
- * Test query script.
- */
-?>
-
-<h3>Testing pecl-isis</h3>
-<?php
-
- $db = isis_open('db/dbname/dbname');
- print_r(isis_last_mfn($db));
-
- echo '<table>';
-
- $result = isis_search('$', $db);
- while ($record = isis_fetch_flat_array($result) ) {
- print (" <tr><td colspan=\"2\">MFN: $record[mfn]</td></tr>\n");
- for ($i=0; $i<count($record)-1; ++$i) { //-1 porque el mfn es +1
- list ($tag, $value) = $record[$i];
- print (" <tr>\n".
- " <td>$tag</td>\n".
- " <td>".htmlspecialchars($value)."</td>\n".
- " </tr>\n");
- }
- }
- echo '</table>';
-?>
-
-</body></html>