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

10 lines
195 B
PHP

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