I have not tried the following code with some success without PDO:
<html><body>
<?php
$db = new sqlite3('/home/harry/interface/wildlife.db');
$results = $db->query('SELECT cascade FROM animalStream');
while ($row = $results->fetchArray()) {
var_dump($row);
}
?>
</body></html>
It shows relevent data without throwing errors, but the format is like this:
string(9) "otter.xls" ["cascade"]=> string(9) "otter.xls" } array(2) { [0]=> string(11) "primate.xls" ["cascade"]=> string(11) "primate.xls" } array(2) { [0]=> string(13) "junglecat.xls" ["cascade"]=> string(13) "junglecat.xls" } array(2) { [0]=> string(12) "pangalin.xls" ["cascade"]=> string(12) "pangalin.xls" }
So it wants to work, it is just getting it to format correctly. Does any one have any ideas about that? Thank you!