mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
12 lines
293 B
PHP
12 lines
293 B
PHP
<?php
|
|
$db = sqlite_open(dirname(__FILE__)."/db.sqlite");
|
|
$res = sqlite_query("SELECT login FROM auth_tbl", $db);
|
|
|
|
/* string sqlite_fetch_single(resource result [, bool decode_binary]) */
|
|
while (($login = sqlite_fetch_single($res))) {
|
|
echo $login . "<br />\n";
|
|
}
|
|
|
|
sqlite_close($db);
|
|
?>
|