I am curious to know if there is a easy way to rank values using php. I have googled for a while and can’t seem to turn up any relevant results. I have a few dynamic values, that I need to rank by the highest value.
Example:
<table>
<tr>
<th>Total Call Attempts</th><th>Rank</th>
</tr>
<tr>
<td>5026200</td><td>Rank</td>
</tr>
<tr>
<td>5455370</td><td>Rank</td>
</tr>
<tr>
<td>2156424</td><td>Rank</td>
</tr>
</table>
Do any of you have any ideas? Any help is appreciated.
TIA