Ver Mensaje Individual
  #10 (permalink)  
Antiguo 20/01/2013, 00:50
Avatar de arcanisgk122
arcanisgk122
 
Fecha de Ingreso: junio-2010
Mensajes: 755
Antigüedad: 14 años, 5 meses
Puntos: 28
Respuesta: Llamar value de un <select>

diste en el clavo esto era lo que yo tenia tiempo buscando:
Código PHP:
Ver original
  1. $fecha_completa = strftime("El %d de %B de %Y", strtotime($fecha));
esta seria la forma netamente PHP de hacerlo tambien y la mas facil

Cita:
Iniciado por andresdzphp Ver Mensaje
Si tu problema es convertir el mes Enero a 01, usa un array para reemplazarlo.

Código PHP:
Ver original
  1. $meses = array('Enero' => 01); //etc

Pero yo siento que estás haciendo las cosas al revés, ya que PHP puede hacer este proceso por tí.

formulario.php

Código PHP:
Ver original
  1. <!DOCTYPE html>
  2. <html lang="es-ES">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Test</title>
  6. </head>
  7. <body>
  8. <form action="destino.php" method="post">
  9. <select name="dia">
  10. <option value="">Dia</option>
  11. <?php for ($i = 1; $i <= 31; $i++): ?>
  12. <option value="<?php echo ($i < 10) ? '0'.$i : $i; ?>"><?php echo ($i < 10) ? '0'.$i : $i; ?></option>
  13. <?php endfor; ?>
  14. </select>
  15. <select name="mes">
  16. <option value="">Mes</option>
  17. <option value="01">Enero</option>
  18. <option value="02">Febrero</option>
  19. <option value="03">Marzo</option>
  20. <option value="04">Abril</option>
  21. <option value="05">Mayo</option>
  22. <option value="06">Junio</option>
  23. <option value="07">Julio</option>
  24. <option value="08">Agosto</option>
  25. <option value="09">Septiembre</option>
  26. <option value="10">Octubre</option>
  27. <option value="11">Noviembre</option>
  28. <option value="12">Diciembre</option>
  29. </select>
  30. <select name="anio">
  31. <option value="">Año</option>
  32. <?php for ($i = 1910; $i <= 2013; $i++): ?>
  33. <option value="<?php echo $i; ?>"><?php echo $i; ?></option>
  34. <?php endfor; ?>
  35. </select>
  36. <input type="submit" value="Enviar" />
  37. </form>
  38. </body>
  39. </html>

destino.php

Código PHP:
Ver original
  1. <?php
  2.  
  3. $dia = $_POST['dia'];
  4. $mes = $_POST['mes'];
  5. $anio = $_POST['anio'];
  6.  
  7. $fecha = "$dia-$mes-$anio";
  8. setlocale(LC_ALL,"es_ES@euro","es_ES","esp");
  9. $fecha_completa = strftime("El %d de %B de %Y", strtotime($fecha));
  10.  
  11. echo "$fecha // $fecha_completa";



$fecha tiene el valor de 21-08-2013 y $fecha_completa el valor de El 21 de agosto de 2013.

Espero que así entiendas.

Saludos.
__________________
Cooler Master Gladiator 600 - AMD PHENOM II X4 955 @ 3.5GHZ
GA-MA78GM-US2H - Super Talent 800 2GB x 2 Dual, (Unganged)
PSU Cooler Master eXtreme Power Plus 500W - Saphire R7-260OC-2GB