Hi,
I have a query like :
SELECT no_document,titre_document FROM document WHERE no_document=3 OR no_document=1 OR no_document=2
and I have a loop like :
while($ligne=mysql_fetch_array($requete)){
...
}
When I display the results in the loop, I get document 1, document 2 and document 3 displayed instead of document 3, document 1 and document 2 like in my where clause.
Is there a way to keep the order like the order in the WHERE clause because my results always seems to re-order automatically by id...
Thanks to help me!!!
Marie-Hélène