i do not unstand the way to sort a multi-dimensional array in php. I have a structure like this:
Array (
[0] (
['vname'] => "Bernt"
['nname'] => "Mayer"
['kl_name'] => "ZR4"
)
[1] (
['vname'] => "Albert"
['nname'] => "Mayer"
['kl_name'] => "TR4"
)
)
My goal is now to first sort by kl_name, and then by nname and then vname. Most important is kl_name. First i tought i should make objects and store them in the array, but i think sorting them is even more complex. php.net has a nice article about array_multisort, but year, i dont understand it :/