Now that the table schema is in place, lets populate the database with our IP data.

<?php
$db = sqlite_open("./ip.db");
    
$fp = fopen("./ip-to-country.csv", "r");
// read ip information 1 entry at a time
while (($row = fgetcsv($fp, 4096))) {
/* sample row
Array
(
    [0] => 33996344
    [1] => 33996351
    [2] => GB
    [3] => GBR
    [4] => UNITED KINGDOM
)
*/
    sqlite_query("INSERT INTO country_data 
        (cc_code_2, cc_code_3, country_name) 
        VALUES('{$row[2]}', '{$row[3]}', '{$row[4]}')", 
        $db);
}
fclose($fp);
?>