Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 537021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:52:58+00:00 2026-05-13T09:52:58+00:00

When you name several file input fields with the same name and an array

  • 0

When you name several file input fields with the same name and an array index like so:
<input type='file' name='thefile[0]'>
<input type='file' name='thefile[1]'>

Then in the form submission you get this:
$_FILES['thefile']['name'][0]
$_FILES['thefile']['name'][1]
And so on with the other fields.

I find this annoying because it prevents reusing the code for non-array file uploads.
Wouldn’t this be better:?
$_FILES['thefile'][0]['name'] and so on?

Does someone know the reason behind this strange CGI/HTML implementation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:52:58+00:00Added an answer on May 13, 2026 at 9:52 am

    It was an unfortunate design decision and its too late to change it now, there is too much code out there that relies on this exact behaviour.

    There is however nothing that prevents you from detecting this kind of input data format and rewriting it into a form suitable for you.

    <?php
    $in = array();
    $in['name'] = array('name1', 'name2', 'name3');
    $in['tmp_name'] = array('tmpname1', 'tmpname2', 'tmpname3');
    
    
    $files = array();
    
    // remap input data into desired format
    foreach (array_keys($in) as $field) {
        foreach ($in[$field] as $index => $item) {
            $files[$index][$field] = $item;
        }
    }
    
    print_r($in);
    print_r($files);
    

    If you run it, you get the following result.

    [~]> php test.php
    Array
    (
        [name] => Array
            (
                [0] => name1
                [1] => name2
                [2] => name3
            )
    
        [tmp_name] => Array
            (
                [0] => tmpname1
                [1] => tmpname2
                [2] => tmpname3
            )
    
    )
    Array
    (
        [0] => Array
            (
                [name] => name1
                [tmp_name] => tmpname1
            )
    
        [1] => Array
            (
                [name] => name2
                [tmp_name] => tmpname2
            )
    
        [2] => Array
            (
                [name] => name3
                [tmp_name] => tmpname3
            )
    
    )
    

    Substitute $in for $_FILES and you are done. As an additional gimmick the “remapping” code works for all arrays with similar structure as $_FILES

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 306k
  • Answers 306k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer My general philosophy is that you shouldn't have "compound" fields… May 13, 2026 at 9:17 pm
  • Editorial Team
    Editorial Team added an answer The short answer is no. The long answer is, because… May 13, 2026 at 9:17 pm
  • Editorial Team
    Editorial Team added an answer Sounds like locking issues. You must not hold any resources… May 13, 2026 at 9:17 pm

Related Questions

My installation of XCode 3.2 has begun to exhibit some strange behaviour. When I
I am putting an XSL together than will create a NAnt build script using
i'm trying to pass a string from main to another function. this string is
Q1 - Asp.Net is able to detect when you change the original files and
My question is how does one abstract a database connection from the model layer

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.