11

I want to know how i can post a multi-dimensional array?

Basically i want to select a user and selected user will have email and name to sent to post.

So selecting 100 users, will have email and name. I want to get in PHP like following

$_POST['users'] = array(
  array(name, email),
  array(name2, email2),
  array(name3, email3)
);

Any ideas?

1

3 Answers 3

31

You can name your form elements like this:

<input name="users[1][name]" />
<input name="users[1][email]" />
<input name="users[2][name]" />
<input name="users[2][email]" />
...

You get the idea...

Sign up to request clarification or add additional context in comments.

5 Comments

what about users[][name], do i have to set the id (1, 2..)?
Nope. You can go with users[], too.
What about a situation where the number of users isn't predefined, say a user clicks a + button and a new set of fields opens and they can actually choose to not add any users
@Pila Does the previous comment help?
I ended up using jQuery to dynamically create new input fields with a name using a counter like so: name = "users["+i+"][name]"
7

Here's another way: serialize the array, post and unserialize (encrypting optional).

And here's an example that worked for me:

"send.php":

<input type="hidden" name="var_array" value="<?php echo base64_encode(serialize($var_array)); ?>">

"receive.php":

if (isset($_POST['var_array'])) $var_array = unserialize(base64_decode($_POST['var_array']));

With that you can just use $var_array as if it were shared between the two files / sessions. Of course there need to be a <form> in this send.php, but you could also send it on an <a> as a query string.

This method has a big advantage when working with multi-dimensional arrays.

1 Comment

@denislexic I'm really glad someone enjoyed it! :)
2

Well, you are going to have to do some looping somewhere. If you name each form element with an index (as Franz suggests), you do the looping on the PHP side.

If you want to use Javascript to do the looping, have your form onSubmit() create a JSON string to pass to the PHP. Then have the PHP retrieve it like so:

json_decode($_POST['users'], true);

The second argument tells it to make arrays instead of anonymous objects.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.