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 519243
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:01:15+00:00 2026-05-13T08:01:15+00:00

Can anyone please explain to me what max_input_nesting_level is used for and what is

  • 0

Can anyone please explain to me what max_input_nesting_level is used for and what is nesting depth with a detailed example. Because as i am a newbie i need to know in depth.

Thanks n advance

  • 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-13T08:01:16+00:00Added an answer on May 13, 2026 at 8:01 am

    I assume you know the basics about arrays and the superglobals $_POST and $_GET. If you don’t know that, you don’t need to understand what max_input_nesting_level is.

    Nested arrays are arrays that contain other arrays. Imagine this piece of code:

    $a = array();
    $a["a"] = array();
    $a["b"] = array();
    $a["a"]["a"] = 1;
    $a["a"]["b"] = 2;
    $a["b"]["a"] = 3;
    $a["b"]["b"] = 4;
    

    $a is an array with two elements. Each one of these ($a["a"] and $a["b"]) is an array itself, with two elements inside each one. If you want to get the value of one of those, you have to specify the arrays-inside-arrays you want to access. For example, $a["b"]["a"] is 3.

    Let’s apply this to web input. Suppose you have this form:

    <form action="" name="myform" method="post">
    <input name="foo[bar][one]">
    <input name="foo[bar][two]">
    <input name="foo[baz][one]">
    <input name="foo[baz][two]"> <!-- The names don't mean anything -->
    <input type="submit">
    </form>
    

    As I explained previously, you have arrays inside arrays. If you want to get the value of the second input, you have to write $_POST["foo"]["bar"]["two"].

    The nesting level is the times you have an array inside an array. The max_input_nesting_level setting says how many times you can put an array inside another in the GET or POST input.

    I hope this helped. Like I said before, if you don’t know the basics of manipulating arrays, or if you don’t know what $_POST and $_GET are and how to get input from HTML, go look it up. You could read this chapter of the book that I used to learn PHP.

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

Sidebar

Related Questions

Can anyone please explain me how silverlight code gets executed.For example in asp.net if
Can anyone please explain to me a very basic example of a custom attribute
Can anyone please explain me the difference about the below used methods to insert
Can anyone please explain me the use of development certificates and how I can
Can anyone please explain me what delegateEvents in backbone.js does? The documentation did not
Can anyone please explain how to replace the values of one column with the
Can anyone please explain or suggest some good tutorial for the method of matrix
Can anyone please explain why the following code behaving strangely: public class UserInputTest {
Can anyone please explain to me why the following two queries yield different results?
Can anyone please explain me what is DataContractTranslstor and what's it's use?

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.