include("instance/city_list.php");
include("instance/global.php");
include_once("goto_full_site.php");
$title = "Major Cities along $iname Interstate $NUM - Roadnow";
$content = "Major Cities along $iname Interstate $NUM with info on hotels, maps, directions, landmarks, city guides and more";
$keys = $title;
$page_title = "Major Cities along $iname";
?>
include("header_html.php");?>
include("header.php"); ?>
-
echo $page_title; ?>
-
echo $dir_dn_name;?>
$size = count($city_list);
for($i=$size-1;$i>=0;$i--) {
$state_code = $city_list[$i][0];
$state_name = getStateName($state_code);
$state_name_encoded = urlencode($state_name);
$city_num = count($city_list[$i]);
?>
- echo $state_name; ?>
for($j=1;$j<$city_num;$j++) {
$city = $city_list[$i][$j];
//$city_encoded = $city;
$city_encoded = str_replace(" ", "-",$city);
echo "- $city
";
}
?>
} ?>
-
echo $dir_up_name;?>
include("footer.php"); ?>