I have an array that I need to re-order. It is an array of country codes:
$countries = array('uk', 'fr', 'es', 'de', 'it');
I need to sort the array with a particular user selected country first, ie. 'fr' and the remaining items need to be in alpabetical order.
I am not too sure how to do this, any help would be appreciated.