Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/05/2006, 09:41
Notwen
 
Fecha de Ingreso: abril-2006
Mensajes: 268
Antigüedad: 18 años
Puntos: 2
Podes utilizar la funcion explode():

Código PHP:
<?
$fecha 
"2006/05/04";
list(
$anio$mes$dia) = explode("/",$fecha);
echo 
"Año: $anio <br />";
echo 
"Mes: $mes <br />";
echo 
"Dia: $dia <br />";
?>
Saludos.

P.D.: ¡¡¡Bienvenido al foro!!!