![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/09/2006, 09:27
|
![Avatar de spider_boy](http://static.forosdelweb.com/customavatars/avatar49752_2.gif) | | | Fecha de Ingreso: diciembre-2003 Ubicación: Chile
Mensajes: 1.855
Antigüedad: 21 años, 2 meses Puntos: 89 | |
Podría ser así...
if(isset($nombre) || !empty($nombre)) // aqui se ve si viene con algún valor
{
// Subir...
}
// Ver extensiones...
$p = pathinfo($nombre);
$ext = $p['extension'];
if($ext != "jpg" || $ext != "gif")
{
echo "Solo .jpg o .gif";
}
Servirá? =/ |