Skip to content

vire/country.json

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

country.json

A simple useful data of the world (by country).

Usage & Examples

All information is stored in .json format, for easier integration. Simply import download and keep going.

PHP
<?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)"); 
 } 

Contribution.

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.

Please note:

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.

LICENSE

MIT

About

Helpful world data of each country in JSON format

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 100.0%