mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
10 lines
235 B
PHP
10 lines
235 B
PHP
<?php
|
|
$db = sqlite_open(dirname(__FILE__)."/db.sqlite");
|
|
|
|
$result = sqlite_query("SELECT * FROM auth_tbl LIMIT 1", $db);
|
|
|
|
echo '<pre>';
|
|
while (($row = sqlite_fetch_array($result, SQLITE_ASSOC)))
|
|
print_r($row);
|
|
echo '</pre>';
|
|
?>
|