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/province.php

9 lines
192 B
PHP

<h1>省份列表</h1>
<?php
foreach ($provinceList as $key => $item) {
?>
<a href=""><?php echo $item->PRI2_Name; ?></a>
<?php
echo ($key + 1) % 10 == 0 ? '<br/>' : false;
}
?>