Let’s say you had an array as following : $time = array ("0600", "0000", "1200", "1800");$time = array ("0600", "0000", "1200", "1800"); but you wanted it to be shown as 0000 0600 1200 1800 Use asort function.. asort ($time);asort ($time); But you might also want to reverse order it. Which is to show the latest […]

continue reading.....