I'm using Wordpress Form Manager Plugin to design a table to display race winners for an athletic event.
<table class="fm-data">
<tbody>
<tr>
<td class="fm-item-cell-lane">7</td>
<td class="fm-item-cell-bib">124</td>
<td class="fm-item-cell-fullname">Person Two</td>
<td class="fm-item-cell-country">USA</td>
<td class="fm-item-cell-sb">11.20</td>
<td class="fm-item-cell-pb">11.03</td>
</tr>
</tbody>
</table>
I would like to use the 3-letter country code together with some CSS and or PHP to dynamically display the country flag after the 3-letter code.
For more info on the limitations and functions of the plugin: Form Manager's documentation
Any Suggestions?
