mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01:00
11 lines
209 B
PHP
11 lines
209 B
PHP
<pre>
|
|
<?php
|
|
$db = new sqlite_db(dirname(__FILE__)."/ip.db");
|
|
|
|
$res = $db->unbuffered_query("SELECT * FROM country_data WHERE cc_code_2='CA'", SQLITE_ASSOC);
|
|
|
|
foreach($res as $row) {
|
|
print_r($row);
|
|
}
|
|
?>
|
|
</pre>
|