Why Is Var_dump($_post) Not Showing All My Variables? August 20, 2024 Post a Comment 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?Solution 1: Make sure that in the html, you are using<input name="name[]" value=""/> Copyinstead of <input name="name" value=""/> Copyphp will overwrite $_POST['name'] with each new name field if they don't have the brackets in the name attribute. Share Post a Comment for "Why Is Var_dump($_post) Not Showing All My Variables?"
Post a Comment for "Why Is Var_dump($_post) Not Showing All My Variables?"