A simple useful data of the world (by country).
All information is stored in .json
format, for easier integration. Simply import download and keep going.
<?php
$file = file_get_contents("/src/country-city.json");
$data = json_decode($file, true);
foreach ($data as $key => $value) {
list($country, $city) = $value;
// initialize your database ..
$db->query("INSERT INTO countries (country, city) VALUES ($country, $city)");
}
So contributions are welcome, in fact that is the reason behind this repo, so we can all share upto-date data made by people all over the world.
If you are fixing a minor typo or something alike, you can do a PR anytime, if you want to modify something more like a country language, population change .. then make sure to include a source in your commit, if possible.
MIT