how to get post from same name textboxes in php
问题 I have a form with multiple textboxes which are created dynamically, now all these textboxes are of same name lets say txt , now is there any way that when form processing happens we could read all the text boxes values using $_POST method, which are of so called same name. If possible how? 回答1: You have to name your textboxes txt[] so PHP creates a numerically indexed array for you: <?php // $_POST['txt'][0] will be your first textbox // $_POST['txt'][1] will be your second textbox // etc.