Jump to content

Form Data


jd|

Recommended Posts

Hi all

This has been driving me crazy for a few days no matter what I do I can't get the result I want.

I have a table with a form on it. the form is loop for the number off Members (in my test this is 7)
and the user enters a score for each member.

The form then passes the data to a new page for proccessing. This is where it all falls to pieces.
I can see the data in the address bar but when I try any loop I can only ever display the last results.

the output should be

Mem=1 test = a
Mem=2 test = b
Mem=3 test = c etc...


Data being passed using "get" function on the form page.

show.php?Mem=1&point=a&Mem=2&point=b&Mem=3&point=c&Mem=5&point=d&Mem=6&point=e&Mem=7&point=f

Any ideas ?

Thanks

JD
Link to comment
Share on other sites

Hi I have tried several various ways of getting this to work and the, script to show it uses the "foreach" array but will not work !

its the $array[array] thats causing the problem. The data entered in the form can be any interger value. and the table/ form is variable depending on the number of members in the database.
Thanks

JD

[code]
$list = "<table border =\"1\"><tr><th>Forename</th>";
$list.= "<th>Surname</th>";
$list.= "<th>Handicap</th>";
$list.= "<th>Edit</th>";
$list.= "<th>Points</th></tr>";
$form ="<form action=\"show.php\" ";
$form.= "method =\"get\">";

                while ($row= mysql_fetch_array($rs) )

                      {
                          $array = array('point'==$value);
                          $Mem = $row["Mem_Id"];
                          $list.= "<tr>";
                          $list.= "$test1";
                          $list.= "<td>".$row["Forename"]."</td>";
                          $list.= "<td>".$row["Surname"]."</td>";
                          $list.= "<td>".$row["Hcap"]."</td>";
                          $list.= "<td> <input type=\"text\" name=\"Mem\" value=\"$Mem\">  </td>";
                          $list.= "<td> <input type=\"text\" name=\"array\" value=\"$array[array]\"> </td>";

                      }

$list.= "</table>";
echo ($list);
                                      $form.= "<input type=\"submit\" value=\"Submit\">";
                          $form.= "</form>";
                        echo($form);

?>[/code]
Link to comment
Share on other sites

first of all your $list and $form are screwed up. If you look at the page and right click and select view source, you will see that you end up listing the form tag twice in which case you cancel out the first form tag. redo your form and try that

Ray
Link to comment
Share on other sites

Thanks Ray cleaned the code up for the form. Never even noticed it was doing that cause of the loop had been playing about with it so much to get the form to display properly.

Still no luck with getting the data the result from the form is...

[code]
show.php?Mem=1&array=a&Mem=2&array=b&Mem=3&array=c&Mem=5&array=d&Mem=6&array=e&Mem=7&array=f
[/code]

And the below is the form page...

[code]
$list = "<table border =\"1\"><tr><th>Forename</th>";
$list.= "<th>Surname</th>";
$list.= "<th>Handicap</th>";
$list.= "<th>Edit</th>";
$list.= "<th>Points</th></tr>";
$list.="<form action=\"show.php\" ";
$list.="method =\"get\">";


while ($row= mysql_fetch_array($rs) )
{

$Mem = $row["Mem_Id"];

$list.= "<tr>";
$list.= "<td>".$row["Forename"]."</td>";
$list.= "<td>".$row["Surname"]."</td>";
$list.= "<td>".$row["Hcap"]."</td>";
$list.= "<td> <input type=\"text\" name=\"Mem\" value=\"$Mem\">  </td>";
$list.= "<td> <input type=\"text\" name=\"array\" value=\"$array[array]\"> </td>";

}



$list.= "</table>";

$list.= "<input type=\"submit\" value=\"Submit\">";
$list.= "</form>";
echo($list);

?>
[/code]
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.