mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
12 lines
314 B
PHP
12 lines
314 B
PHP
<?php
|
|
$db = sqlite_open(dirname(__FILE__)."/db.sqlite");
|
|
|
|
$result = sqlite_query("SELECT * FROM auth_tbl", $db);
|
|
|
|
echo '<pre>';
|
|
/* array sqlite_fetch_all(resource result [, int result_type [, bool decode_binary]]) */
|
|
var_dump(sqlite_fetch_all($result, SQLITE_ASSOC));
|
|
echo '</pre>';
|
|
|
|
sqlite_close($db);
|
|
?>
|