hi all,
I got some sample data in a Table Testing which consists of two fields: (there is not primary key in this sample Table)
Data | Date
Hello | 2010-07-1 15:11:11
World | 2010-07-1 11:01:01
Hi there | 2010-07-02 11:36:11
I was trying to print the data out Ordered by Date DESC in this way:
Record 1: Hi there
Record 2: Hello
Record 3: World
I have no idea how to do this using either cakePHP or PHP.
Please help if you could.