-
-
Save AdnanHussainTurki/0ba9e2c914167a0e2eea173bd24fbb39 to your computer and use it in GitHub Desktop.
Indian States and Union Territories in PHP Array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$states = [ | |
"AN" => "Andaman and Nicobar Islands", | |
"AP" => "Andhra Pradesh", | |
"AR" => "Arunachal Pradesh", | |
"AS" => "Assam", | |
"BR" => "Bihar", | |
"CG" => "Chandigarh", | |
"CH" => "Chhattisgarh", | |
"DN" => "Dadra and Nagar Haveli", | |
"DD" => "Daman and Diu", | |
"DL" => "Delhi", | |
"GA" => "Goa", | |
"GJ" => "Gujarat", | |
"HR" => "Haryana", | |
"HP" => "Himachal Pradesh", | |
"JK" => "Jammu and Kashmir", | |
"JH" => "Jharkhand", | |
"KA" => "Karnataka", | |
"KL" => "Kerala", | |
"LA" => "Ladakh", | |
"LD" => "Lakshadweep", | |
"MP" => "Madhya Pradesh", | |
"MH" => "Maharashtra", | |
"MN" => "Manipur", | |
"ML" => "Meghalaya", | |
"MZ" => "Mizoram", | |
"NL" => "Nagaland", | |
"OR" => "Odisha", | |
"PY" => "Puducherry", | |
"PB" => "Punjab", | |
"RJ" => "Rajasthan", | |
"SK" => "Sikkim", | |
"TN" => "Tamil Nadu", | |
"TS" => "Telangana", | |
"TR" => "Tripura", | |
"UP" => "Uttar Pradesh", | |
"UK" => "Uttarakhand", | |
"WB" => "West Bengal" | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment