Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
![]() | Re: <?php $a=$_POST["no_of_members"]; $x=0; while($a!=0) { $x+=1; ?> <form action='process.php' method='POST'> Member<?php echo $x; ?>'s Name:<input type='text' name='mname'> </br> Age:<input type='text' name='age'> </br> Designation:<input type='text' name='designation'></br></br> <?php $a-=1; } ?> <input type='submit' name='submit' value='Proceed'> </form> The above form will split into multiple field depending on no_of_members,so What will be the code … |
The End.