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.
information-system/application/views/city.php

10 lines
236 B
PHP

<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;
}
?>