I have an array that contains different date values. And I have used the following code to sort the date array, its done.
I want to get only distinct rows with their respective AnsId, like Qid: 01 have last AnsId: 01 I have following data structure,
Is there a way I can sort the following array into the correct chronological order ? [0] => Array ( [date] => Sat, 12 Feb 2011 16:55:13 -0500
I have two sources of information and those sources have dates in different formats. Source A Wed, 17 Nov 2010 12:14:10 +0000 (from a rss feed)
Is there away i can sort the following array into the correct order? Array ( [0] => apr [1] => aug [2] => dec
I have a table in mysql: CREATE TABLE user (id INT, name VARCHAR(250)); I query the table: $result = mysql_query(\"SELECT id,name FROM user\");