|
if ($country) {
echo ' Search results for ' . $country .' ';
} elseif ($state) {
echo 'Search results for ' . $state .' ';
}
//search by country
if ($country) {
$country_id = get_country_id($country);
get_list("country",$country_id);
} elseif ($state) { //search by state
$state_id = get_state($state);
get_list("state",$state_id);
} else {
echo "Please select a place ";
}
echo "go back ";
?>
|