Ver Mensaje Individual
  #5 (permalink)  
Antiguo 13/07/2012, 13:06
sandymiau
 
Fecha de Ingreso: mayo-2012
Ubicación: En la Tierra
Mensajes: 41
Antigüedad: 12 años, 5 meses
Puntos: 3
Respuesta: extraer datos de un array

Me muestra los datos, =)

Pero ahora cuando no introduzco datos, no me muestra el echo del if.

Código PHP:
Ver original
  1. echo 'Por favor, introduzca una cantidad';

¿que estoy haciendo mal? =(

Aqui esta el codigo completo

Código PHP:
Ver original
  1. if (empty ($_GET["checky"])){
  2.     echo 'Por favor, LLENE CORRECTAMENTE LOS DATOS';
  3.    
  4. }
  5. else {
  6. foreach ($_GET["checky"] as $checky2 => $value) {
  7. echo $value . '<br>';
  8. echo '<input name="checky[]" type="hidden" id="activar2" value="'.$value.'"/>' . '<br /><br />';
  9.  
  10.  
  11. }
  12.  
  13. }
  14. if (!isset ($_GET["texty"])) {
  15.     echo 'Por favor, introduzca una cantidad';    
  16. }
  17. else {
  18.     foreach ($_GET["texty"] as $texty2) {
  19. echo $texty2 . '<br>';  
  20.  
  21. }
  22. }