On Tue, 2007-06-05 at 11:43 -0400, Robert Cummings wrote:
> On Tue, 2007-06-05 at 16:39 +0100, blueboy wrote:
> > I have an array of files to be uploaded
> > 
> > <td><input name="userfile[]" type="file"></td>
> > </tr>
> > <tr>
> > <td> 2.</td>
> > <td><input name="userfile[]" type="file"></td>
> > </tr>
> > <tr>
> > <td>3.</td>
> > <td><input name="userfile[]" type="file">
> > 
> > 
> > I can get the name
> > 
> 
>   $i = 0;
> > foreach ($_FILES['userfile']['name'] as $value) {
> > 
> >   echo $value
>     $i++;
> >   }

I should be shot for the above... use the following:

foreach ($_FILES['userfile']['name'] as $i => $value)
{
    echo $value;
}

Cheers,
Rob.
-- 
.------------------------------------------------------------.
| InterJinn Application Framework - http://www.interjinn.com |
:------------------------------------------------------------:
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for       |
| creating re-usable components quickly and easily.          |
`------------------------------------------------------------'

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

Reply via email to