Merge pull request #872 from AndreasK79/counties_add_state_in_view

[US Counties] Added state in detail view
这个提交包含在:
Peter Goodhall 2021-02-08 14:17:45 +00:00 提交者 GitHub
当前提交 5f6bb0221b
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -9,6 +9,7 @@
<thead>
<tr>
<td>#</td>
<td>State</td>
<td>County</td>
</tr>
</thead>
@ -16,6 +17,7 @@
foreach ($counties_array as $county) {
echo '<tr>
<td>'. $i++ .'</td>
<td>'. $county['COL_STATE'] .'</td>
<td><a href=\'javascript:displayCountyContacts("'. $county['COL_STATE'] .'","'. $county['COL_CNTY'] .'")\'>'. $county['COL_CNTY'] .'</a></td>';
echo '</tr>';
}