When I using ajax post data with struct

And I get data from code here:
$_POST["post"]; => result is 979, that’s OK
$_POST["href[href]"]; => result is 0, How to fix it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
Bracket notation is used to create an array entry. Use this instead:
Calling
$_POST["href"]will return an associative array: