Basically I want to give the user the ability to enter a bunch of attributes, So, as the user selects the last input in a list we will create another one.
That's real easy, now the question comes to naming and fetching on the server, I know in google chrome the below code is valid and will give me an array on the other end. But I cannot seem to find this information anywhere regarding browser compatibility with this feature, do all browsers support this? or is is only truly valid for selects for example.
If someone could explain, or point me towards the correct W3C guidlines for this it would be great.
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php if(!empty($_POST)){
xdebug_var_dump($_POST);
} ?>
<form method="post">
<input name="testing[]" value="testing1" />
<input name="testing[]" value="testing2" />
<input name="testing[]" value="testing3" />
<input name="testing[]" value="testing4" />
<input name="testing[]" value="testing5" />
<button type="submit">Go</button>
</form>
</body>
</html>