please help... I have a looping textbox.. i cant get the value of the textbox when a user input a value.
when a user click the submit button, i want to post in to another page and display it..
I have a code here
for($i=1; $i<=$_REQUEST['no_textbox']; $i++)
{
echo " <table width=600>
<tr align=center >
<td colspan=2 bgcolor=#CCCCCC width=150><b>Passenger's Name No. ($i)</b></td>
<td colspan3 bgcolor=#CCCCCC>
<b><select name=\"act\">
<option>Please Select</option>
<option>Mr.</option>
<option>Ms.</option>
<option>Mrs.</option>
</select></b>
<input type=text size=46 name=text_$i> </td>
</tr>
<tr>
<td align=center colspan=2 bgcolor=#CCCCCC><b>Age No. ($i)</b></td>
<td bgcolor=#CCCCCC> <input type=text name=age></td>
</tr>
</table>";
}