Ver Mensaje Individual
  #8 (permalink)  
Antiguo 03/08/2011, 13:01
oscarbt
 
Fecha de Ingreso: abril-2009
Ubicación: Colombia
Mensajes: 949
Antigüedad: 15 años
Puntos: 27
Respuesta: Restriccion con formularios

Seria mejor:

Código PHP:
Ver original
  1. if((empty($telefono)) || empty($email))
  2. echo "No se puede guardar, faltaron campos por ingresar";
  3. else
  4. {
  5.     //aca guardas
  6.    
  7.    
  8. }