ho questi campi nel db, e li estraggo (ora senza problemi )
Codice PHP:
269        "Tuesday 15th May 2007"                                                               
270        "Tuesday 29th May 2007"                                                                        
271        "Thursday 31st May 2007"                                                                        
318        "Tuesday 22th May 2007"                                                                         
319        "Monday 21st May 2007" 
li ho esattamente in questo ordine, e dopo l'estrazione infatti ottengo questo

Codice PHP:
Array ( 
[
269] => "Tuesday 15th May 2007" 
[270] => "Tuesday 29th May 2007" 
[271] => "Thursday 31st May 2007" 
[318] => "Tuesday 22th May 2007" 
[319] => "Monday 21st May 2007" 
come potrei fare per ottenere un ordinamento per data? e non per numero (269,270,ecc)
creando array di supporto? qualcos'altro? :master: