Hi guys, hope you're all enjoying you're evenings as best you can under the circumstances.
I need to sort an mutidimensional array aphbetically by one ofit's values. Heres the example:
$link[0]=array("title" => "a title", "live" => "N", "id" => 23);
$link[1]=array("title" => "a title", "live" => "N", "id" => 23);
$link[2]=array("title" => "a title", "live" => "N", "id" => 23);
I need to sort the "title". I have no problem printing all the 'links' I just can't get them in order!
Thanks
Nick