summaryrefslogtreecommitdiff
path: root/httemplate/misc/cities.cgi
blob: c92485ee4b9a1a527c89a0d2060b1795b15bbe36 (plain)
1
2
3
4
5
6
7
[ <% join(', ', map { qq("$_") } @cities) %> ]
<%init>

my( $county, $state, $country ) = $cgi->param('arg');
my @cities = cities($county, $state, $country);

</%init>