|    
			
				13/09/2002, 06:38
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: septiembre-2002 
						Mensajes: 38
					 Antigüedad: 23 años, 1 mes Puntos: 0 |  | 
  |  Re: ¿Cómo hago para invertir una campo fecha?  
  Puedes usa la funcion date_format(fecha,'%d-%m-%y')
 en un select de mysql con PHP seria asi
 
 $consulta = "select
 date_format(fecha,'%d-%m-%y') from
 TU TABLA where xxx='"xxxx"' ORDER BY FECHA DESC;
 $query=mysql_query($consulta,$conexion);
 
 tambien se utiliza
 
 date_format(fecha,'%d-%m-%y') as fecha
     |