All pastes #1964506 Raw Edit

getState.php

public php v1 · immutable
#1964506 ·published 2010-10-17 01:29 UTC
rendered paste body
<?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>";		}	}}