Hello
why do I need to reset the array after I sorted it (using asort, or sort)?
If I use an associative array, I need to use asort
but what does it use to sort: keys or values?
and another little question...
I have an array containing
$arr = array("frontname lastname (amount)","frontname lastname (amount)", ......);
can I explode every element, to make an associative array out of it?
I'd like this as a result
$arr = array("frontname lastname"=>"amount", "frontname lastname"=>"amount", ....);