diff options
Diffstat (limited to 'samples/phpisis.php')
-rw-r--r-- | samples/phpisis.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/samples/phpisis.php b/samples/phpisis.php new file mode 100644 index 0000000..75326f1 --- /dev/null +++ b/samples/phpisis.php @@ -0,0 +1,29 @@ +<?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> |