Ver Mensaje Individual
  #10 (permalink)  
Antiguo 08/09/2010, 13:06
learning_php
 
Fecha de Ingreso: septiembre-2010
Mensajes: 19
Antigüedad: 13 años, 7 meses
Puntos: 0
Respuesta: Sugerencia y ayuda en otro ejercicio

bueno disculpa y gracias, ahora mismo reemplaze la linea de codigo

Código PHP:
Ver original
  1. if ((primer_num=="") || ($segundo_num=="") || ($tercer_num==""))
  2. {
  3.     header('location:ejemplo2.html');
  4.     exit;
  5. }
  6.  
  7. por esta if (!isset($_POST['num1']) || !isset($_POST['num2']) || !isset($_POST['num3']))
  8. {
  9.     header('location:ejemplo2.html');
  10.     exit;
  11. }
pero no redirecciona,