Without going into the process of how I came to do this, I just wanted 
to throw out there that even if you only have 1 file input, it still 
seems to loop 5 times...

Is this something with my code...

--
$current = 0;

while (list($key) = each($_FILES['picname'])) {
   echo $current;
   $current++;
}
--

...or is there something freaky going on with the $_FILES array?

-J


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to