my question:
<input type="text" name="sample1">
<input type="text" name="sample2">
this input add with javascript with limit 10 max = sample10
.
how to handle this with php? like $_POST['sample$i']
.
for ($i = 1; $i <= 10; $i++) {
}
and if it can be done, $some$i = $_POST['sample$i']
.
can i insert to db with '$some1', '$some2'
?