Is there any standard way to pass an array from a form to a server:
<form> <input name="nickname"> <input name="password"> <input name="nickname"> //генерируются скриптом <input name="password"> </form> The bottom line is that the names of the inputs are the same, and they are overwritten in the $ _GET array. Is it possible to create an array so that all these inputs automatically put data into a single array called nickname and password ?