I have a file.db (binary) that I can read from SQlite 3.exe, but I want to echo out the information with a while ordered in a table. I have the following code:
<?php
$db = new PDO('sqlite:file.db');
$query = $db->prepare("SELECT * FROM `Timers` LIMIT 1");
$query->execute();
while($row = $query->fetchObject())
{
echo $row->Values;
}
?>
Expected result:
512
Actual result:
Notice: Undefined property: stdClass::$Values