Posts
 
Reputation
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
~2K People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for skinbug

<?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 …

Member Avatar for Stefano Mtangoo
0
2K

The End.