Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
I want to create one table using "for" loop
page1.phpCode: Select all
<form method='post' action='submitpage.php'>
$limit =5;
<table>
for($i=1;$i<=limit;$i++)
{
<tr><td >
<input type='text' name='sessName' size='15'></td></tr>
}
</table>
</form>in the above text box how i changed the name of it depends on the for loop????????????
again how i post this textboxfield array???????????
In submitpage.php how i post the value of that textbox???????
$name=$_POST[?????????];
feyd | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]