You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<h1>城市列表</h1>
|
|
|
|
<?php
|
|
foreach ($cityList as $key => $item) {
|
|
?>
|
|
<a href="<?php echo site_url('city/edit/'.$item->CII_SN); ?>"><?php echo $item->CII2_Name; ?></a>
|
|
<?php
|
|
echo ($key + 1) % 10 == 0 ? '<br/>' : false;
|
|
}
|
|
?>
|