[US Counties] Added state in detail view

这个提交包含在:
Andreas 2021-02-08 13:42:25 +01:00
父节点 c35d0d257e
当前提交 29d2656c1f

查看文件

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