I have a form with over 350 name=”somename” attached to HTML input elements. When I run a var_dump($_POST) only 150 of them show up, what’s going on?
Share
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.
Make sure that in the html, you are using
instead of
php will overwrite $_POST[‘name’] with each new name field if they don’t have the brackets in the name attribute.