getState.php
public php v1 · immutable<?php//States$states = array ( "pakistan" => array("NWFP", "Sindh", "Balouchistan", "Punjab"), "india" => array("Bihar", "gujrat", "Goa", "Uttar Pardesh"), "usa" => array("Indiana", "Luisiana", "Texas", "Utah"), "uk" => array("England", "Scotland", "Ireland", "Wales"));if(isset($_GET['country'])){ $c = $_GET['country']; if(isset($states[$c])) { for($i = count($states[$c]) -1; $i>=0; $i--) { echo "<option value='".$states[$c][$i]."'>".$states[$c][$i]."</option>"; } }}