multiple textarea with same name and PHP treatment
问题 I have a dynamic form in which i can add and remove textarea. The name of textareas is MyTextarea[] <textarea style="display:inline;" name="MyTextarea[]"></textarea> <textarea style="display:inline;" name="MyTextarea[]"></textarea> So when I want to treat this textarea with PHP i'm doing a : echo $_POST['MyTextarea']; So a Array is display on the screen, up to now it's ok So I do a print_r($_POST['MyTextarea']); and I have again the same result : Array I want to know if it's possible to have