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

  • SEARCH
  • Home
  • 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 6369641
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:49:52+00:00 2026-05-25T00:49:52+00:00

Might seem like a stupid question, but I’m having an issue creating an array

  • 0

Might seem like a stupid question, but I’m having an issue creating an array from multiple POST variables. They are coming from a jQuery form that can have any number of variables. It can be 1 of 2 options, name or school.

For example: $_POST['name1'], $_POST['school2'], $_POST['name3'], $_POST['name4'], etc.

Is there a way to get the max number of variables and put each variable into an array? Or is there a better way of doing this?

Any input is appreciated.

  • 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-25T00:49:53+00:00Added an answer on May 25, 2026 at 12:49 am
    <input name="name[]" />
    <input name="school[]" />
    <input name="name[]" />
    <input name="name[]" />
    

    Is that what you mean? PHP Form Arrays Then, reference wise, you now have an array for $_POST['name'] and $_POST['school']

    foreach ($_POST['name'] as $name)
    {
      // each form element from the `name[]` inputs = $name
    }
    foreach ($_POST['school'] as $school)
    {
      // each form element from the `school[]` inputs = $name
    }
    

    Alternatively, if you’re numbering them you can use a foreach on the $_POST variable:

    foreach ($_POST as $key => $val)
    {
      if (preg_match('/^name\d+$/',$key){
        // name variable
      } else if (preg_match('/^school\d+$/',$key){
        // school variable
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This might seem like a stupid question I admit. But I'm in a small
This might seem like a stupid question but it's been a long day. I'm
This might seem like a pretty detailed question about Easymock, but I'm having a
this might seem like a stupid question but I've Googled to no avail. I've
This might seem like a weird question, but bear with me. I'd like to
Ok sorry this might seem like a dumb question but I cannot figure this
This might seem like a silly question but valgrind doesn't by default give you
This might seem like a really dumb question, but I am writing an application
This might be a stupid question, but I can't seem to make it to
This might seem a bit like a do-my-homework-for-me question (and it is), but I

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.