Hello, i hope you can help with this as im stuck!
i have a list of editable form fields that are dynamically created from the records in the database and are named:
$matchNo = "1";
/ loop through database records
<input name="home_score<? echo $matchNo; ?>" type="text" id="home_score<? echo $matchNo; ?>" value="<? echo $home_score; ?>" size="2" maxlength="2">
$matchNo = $matchNo + "1";
// end loop
When the user presses submit i then need to write these to another table. So how do i retrieve the list of form fields when they have dynamic names and the number of form fields differs each time?
many thanks