wmoussalli Posted May 8, 2006 Share Posted May 8, 2006 Hello there, I have been playing around with php for a while now yet i always get stuck with one aspect of code.example used is clan website where am looking to add players statsWhat i am trying to do is add stats for players on same team, i know how to add the stats on individual basis (1 at time then click an another) but i want to display on same pageImagining that GAMETAG KILLS DEATHS are all textbox's(1st player) GAMETAG KILLS DEATHS(2nd player) GAMETAG KILLS DEATHS(3rd player) GAMETAG KILLS DEATHS(4th player) GAMETAG KILLS DEATHSSUBMITDoes anyone have any ideas, help would b much appreciated...Thanking you for your timeWayneBelow is ruffly what am looking for...while ($numberofplayers > '0'){echo"<tr><td height=\"26\"><input type=text name=\"gametag[$numberofplayers]\" size=30></td><td><input type=text name=\"kills[$numberofplayers\" size=5></td><td><input type=text name=\"deaths[$numberofplayers]\"size=5></td></tr>";$players--;} Quote Link to comment Share on other sites More sharing options...
trq Posted May 8, 2006 Share Posted May 8, 2006 Sorry... Im lost. Do you want to know how to add the results after the forms submission, or how to create the form using a loop? You need to be more specific with what exactly your trying to do. Quote Link to comment Share on other sites More sharing options...
wmoussalli Posted May 8, 2006 Author Share Posted May 8, 2006 sorry dude, yes i am trying to create a loop that will hope fully give the textbox gametag and others a different name everytime its created. Example gametag1, gametag2 etc depending on how many players there are. And then need a statment to store them in mysql in a loop...please help guys... Quote Link to comment Share on other sites More sharing options...
Michael4172 Posted May 8, 2006 Share Posted May 8, 2006 You'd want something like: [code]i = 0;if ($name == "Gametag"){ $name1 = $name; $name_count++; while ($i <= $name_count){ COMBINE $name1 with $name_count++ } }[/code]All you'd need to do is to add the two names together by whateve method you prefer when adding the name and the number. Thus Gametag would be Gametag1 and then next occurance is Gametag2 ect... Quote Link to comment Share on other sites More sharing options...
wmoussalli Posted May 8, 2006 Author Share Posted May 8, 2006 thanks for reply mate, am gonna have a blast think it sound like should do the trick... Will keep posted :-)thanks again...Wayne Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.