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++;
>   }
> 
> but I want the index position, any ideas?

See additions above.

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