When purchase is done, a zip archive is provided by email. It contains the list of languages you have selected in the different formats chosen
The formats are : TXT, PHP, ASP, XML, JS, MySQL, C++, Coldfusion, Java, Python, C#. It is easy in your application to include the necessary file and start working.
Lists are regularly updated according to ISO 3166-1 alpha-2 standard.
Be careful lists are encoded in UTF-8 which means that characters are encoded in several octects. You must take this into account for proper display
<?php $country_code = array( 'af' => 'Afghanistan', 'fr' => 'France', 'es' => 'Espagne', ... ); ?>
af;Afghanistan fr;France es;Espagne ...
<?xml version="1.0" encoding="UTF-8"?> <country_list_fr xml:lang="fr"> <country> <country_name>Afghanistan</country_name> <country_code>af</country_code> </country> <country> <country_name>France</country_name> <country_code>fr</country_code> </country> ...