Jump to content

Come on Guys, Please help me out here...


wmoussalli

Recommended Posts

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 stats

What 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 page


Imagining 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 DEATHS

SUBMIT

Does anyone have any ideas, help would b much appreciated...
Thanking you for your time

Wayne

Below 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--;
}
Link to comment
Share on other sites

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.
Link to comment
Share on other sites

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...
Link to comment
Share on other sites

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...
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.