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 idea?