mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
6 lines
146 B
PHP
6 lines
146 B
PHP
<?php
|
|
$db = new sqlite_db(dirname(__FILE__)."/ip.db");
|
|
$r = $db->fetch_column_types("ip_ranges");
|
|
|
|
echo '<pre>' . print_r($r, true) . '</pre>';
|
|
?>
|