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.
9 lines
192 B
PHTML
9 lines
192 B
PHTML
8 years ago
|
<h1>省份列表</h1>
|
||
|
<?php
|
||
|
foreach ($provinceList as $key => $item) {
|
||
|
?>
|
||
|
<a href=""><?php echo $item->PRI2_Name; ?></a>
|
||
|
<?php
|
||
|
echo ($key + 1) % 10 == 0 ? '<br/>' : false;
|
||
|
}
|
||
|
?>
|