mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
12 lines
217 B
PHP
12 lines
217 B
PHP
<pre>
|
|
<?php
|
|
$db = sqlite_open(dirname(__FILE__)."/ip.db");
|
|
$res = sqlite_query("SELECT * FROM country_data LIMIT 2", $db);
|
|
|
|
while (($obj = sqlite_fetch_object($res))) {
|
|
print_r($obj);
|
|
}
|
|
|
|
sqlite_close($db);
|
|
?>
|
|
</pre>
|