Skip to content

Instantly share code, notes, and snippets.

@holantomas
Created August 16, 2013 09:13
Show Gist options
  • Save holantomas/6248433 to your computer and use it in GitHub Desktop.
Save holantomas/6248433 to your computer and use it in GitHub Desktop.
Státy EU v PHP poli
<?php
$countries = array(
"AT" => "Rakousko",
"BE" => "Belgie",
"BG" => "Bulharsko",
"CY" => "Kypr",
"CZ" => "Česká republika",
"DK" => "Dánsko",
"EE" => "Estonsko",
"FI" => "Finsko",
"FR" => "Francie",
"DE" => "Německo",
"GR" => "Řecko",
"HU" => "Maďarsko",
"IE" => "Irsko",
"IT" => "Itálie",
"LV" => "Lotyšsko",
"LT" => "Litva",
"LU" => "Lucembursko",
"MT" => "Malta",
"NL" => "Holandsko",
"PL" => "Polsko",
"PT" => "Portugalsko",
"RO" => "Rumunsko",
"SK" => "Slovenská republika",
"SI" => "Slovinsko",
"ES" => "Španělsko",
"SE" => "Švédsko",
"GB" => "Británie"
);
$countries2 = array(
"Rakousko",
"Belgie",
"Bulharsko",
"Kypr",
"Česká republika",
"Dánsko",
"Estonsko",
"Finsko",
"Francie",
"Německo",
"Řecko",
"Maďarsko",
"Irsko",
"Itálie",
"Lotyšsko",
"Litva",
"Lucembursko",
"Malta",
"Holandsko",
"Polsko",
"Portugalsko",
"Rumunsko",
"Slovenská republika",
"Slovinsko",
"Španělsko",
"Švédsko",
"Británie"
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment