Hello,
I have an array which is produced by some other coding, essenitally it follows this santax:
Code:
array("September, "March", "December", "August", "January")
What I want to be able to do is to order these, so it would be:
Code:
array("January", "March", "August", "September", "December")
All i can think of doing is comparing it to the months in order, but can find a function to 'Sort By Array'.
I've tried using array_multisort() but with no sucess.
Any Ideas?
Marty