Hello all.
Don’t know how to correctly describe the situation, but I try:
I have an array $threats with data in it:
for example to get the latest posts time, I do:
for($i=0;$i<count($threats);$i++) {
echo $threats[$i]['last_post'];
}
How I can sort this array by $threats[$i][‘last_post’] ?
how is it achieved?
I somehow can’t find the solution for it.
Thank you very much!