Answer the question
In order to leave comments, you need to log in
Nested data structures passed through html form?
Approximate form structure:
<form action="">
<input type="text" name="title">
<input type="text" name="year">
<input type="submit" value="Send">
</form>
[
{
title: "1..."
yaer:2015
},
{
title: "2..."
yaer:2012
},
...
]
Answer the question
In order to leave comments, you need to log in
<input type="text" name="data[0][title]">
<input type="text" name="data[0][year]">
<input type="text" name="data[1][title]">
<input type="text" name="data[1][year]">
stackoverflow.com/questions/4295782/how-to-you-ext...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question