On Tue, 2007-06-05 at 17:16 +0100, blueboy wrote:
> if I have an array of  3  images
> 
> <table class="signup_table">
> <tr>
> <td> 1.</td>
> <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">
> </td>
> </tr>
> </table
> 
> How do I access the filename? Like this?
> 
> echo $fileName1 = $_FILES['userfile']['name'][0];
> echo $fileName2 = $_FILES['userfile']['name'][1];
> echo $fileName3 = $_FILES['userfile']['name'][2];

No, like this:

    echo $fileName1 = $_FILES['userfile'][1]['name'];
    echo $fileName2 = $_FILES['userfile'][2]['name'];
    echo $fileName3 = $_FILES['userfile'][3]['name'];

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