Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/07/2009, 15:36
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 6 meses
Puntos: 2135
Respuesta: validar un campo File de formulario con PHP

De hecho la forma correcta sería:
Código php:
Ver original
  1. if ($_FILES['archivo']['error'] == UPLOAD_ERR_NO_FILE) {
  2.      // No hay archivo.
  3. }

Saludos.