php - how do I display items from an array with their values
- by Steven
I have this array:
Array ( [#LFC] = 1 [#cafc] = 2 [#SkySports] = 1)
How do i display it like this on a page? (preferably in value descending order as below):
#cafc (2), #LFC (1), #SkySports (1)
Thanks