Fernando Viadero wrote:
hello
is this code OK???
"fotos" is an array of uploaded files (images)..
i want to process them in case they are images...if not, don't process..
is myme type case sensitive??
some of our customers, have problems uploading images...
thanks in advance..
$tipo = $HTTP_POST_FILES["fotos"]["type"][$a];
$tipo = ( strstr($tipo, '; name') ) ? str_replace(strstr($tipo, ';
name'), '', $tipo) : $tipo; //some opera patch¿¿¿
If you're using php4.1 or above change that to:
$tipo = $_FILES['fotos']['type'][$a];
Read up on the "super globals":
http://www.php.net/manual/en/language.variables.predefined.php
--
Postgresql & php tutorials
http://www.designmagick.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php