Is there a way to order the mailboxes by time received, in descending order? (newest first) Right now it's the oldest first, and the only other way I can think of is to load it in an array and reverse that, then loop the array and output it Any help would be great, thanks
Hah, nevermind, already figured it out. Change the loop from for ($x = 1; $x <= $info->Nmsgs; $x++) { PHP: to for ($x = (int) $info->Nmsgs; $x >= 1; $x--) { PHP: