Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/02/2009, 07:54
Avatar de gokufast
gokufast
 
Fecha de Ingreso: abril-2007
Mensajes: 540
Antigüedad: 17 años
Puntos: 3
gracias y puedo hacer operaciones con esto (por ejemplo restar meses?) o solo es para mostrar.

bueno tengo algo que intente, no se si pueda hacer las operaciones que mencione anteriormente, pero lo voy a intentar luego.

Código PHP:
setlocale(LC_ALL,"spa-SPA");
$fecha_ingles $_POST['mes_prestamo']."/".$_POST['dia_prestamo']."/".$_POST['anio_prestamo'];
$formato_mes "%B";
$fecha_spa ucfirst(strftime($formato_messtrtotime($fecha_ingles)));
echo 
$fecha_spa."<br>";
$formato_año "%Y";
$año_pres strftime($formato_añostrtotime($fecha_ingles));
echo 
$año_pres

Última edición por GatorV; 11/02/2009 a las 13:50