different array for different input text

Danieru

New Member
hi i want to store value of each input text in different arrays how to do thatfor example store value of input text 1 in array 1 and value of input text 2 in array 2 and so on how to achieve that here is the code for print input text\[code\]for($r=1;$r<=10;$r++){ echo"<form id='ponts'> <table> <tr> <td>Enter point number$r</td><td> <input type='text' id='pt$r' name='pt$r' pattern='[0-9.]+'/></td> </tr> </table> </form>";}\[/code\]
 
Back
Top