mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
17 lines
317 B
PHP
17 lines
317 B
PHP
<pre>
|
|
<?php
|
|
$db = sqlite_open(dirname(__FILE__)."/db.sqlite");
|
|
$res = sqlite_query("SELECT login FROM auth_tbl", $db);
|
|
|
|
/* got rows? */
|
|
while (sqlite_has_more($res)) {
|
|
/* fetch one row */
|
|
print_r(sqlite_current($res, SQLITE_ASSOC));
|
|
|
|
/* move along */
|
|
sqlite_next($res);
|
|
}
|
|
|
|
sqlite_close($db);
|
|
?>
|
|
</pre>
|