如何使用php从多行表单更新mysql数据库

时间:2012-07-19 21:25:21

标签: php mysql html forms

我是PHP的新手,并且整天都在努力解决这个问题。我有一个包含玩家详细信息的MySQL数据库。我想从数据库中选择它们并在表格中的表格中显示,这可以与下面的代码一起使用。

当我想要更新行时,问题就出现了,可能是使用选项字段将玩家状态从活动状态变为非活动状态。 当我按下提交时,我可以获得每个pdbactive字段的值,但是我无法获得PID,这是进入数据库的关键。

<form name="selected_players" action="" method="POST">
            <table border="1">
            <th>Player ID</th>
            <th>Player Name</th>
            <th>Player Surname</th>
            <th>Status</th>
            <th>Primary Team*</th>
            <?php
            // Then get the players from the players table who have got same team_name but no team_id yet....which would have be set if they were active
            $query = "select * from `player2012` where teamid ='$tid' and aru='A';";     
            $result = mysql_query($query) or die ("Error in query: $query " . mysql_error()); 
            $count = mysql_num_rows($result);  
            echo $count;
            //echo ("<br />");

            while ($row = mysql_fetch_assoc($result)) {

                    $player_id = $row["player_id"];     
                    $player_fname = $row["player_fname"];
                    $player_sname = $row["player_sname"];
                    $pactive = $row["active"];  
                    //echo ($pactive);
                    //echo ("<br />");  
                    ?>
                     <tr>
                        <td><input name"pid[]" id="pid[]" type="text" value="<?php echo $player_id ?>" /><?php echo $player_id ?></td>
                        <td><input name"player_fn[]" type="hidden" value="<?php echo $player_fname ?>" /><?php echo $player_fname ?></td>
                        <td><input name"player_sn[]" type="hidden" value="<?php echo $player_sname ?>" /><?php echo $player_sname ?></td>

                        <?php if($pactive=="1"){
                            ?>
                                <td><select name="pdbactive[]" id="pdbactive[]">
                                <option value="1" selected="selected">Active</option>
                                <option value="0">Not Active</option>
                                </td>
                        <?php  }
                        else
                        {
                            ?>
                                <td><select name="pdbactive[]" id="pdbactive[]">
                                <option value="1">Active</option>
                                <option value="0" selected="selected">Not Active</option>
                        </td>
                        <?php
                        }
                        ?>

                        <td>&nbsp;
                        </td>
                    </tr>
                 <?php
                     }
                  ?>
                </table>
            <p>&nbsp;</p>
            <p> When you have updated "status" for each of these players, please press submit button 
                <input name="Submit" type="submit" id="Sumbit" value="Submit" /> </p>
            </form>

            <?php

            mysql_free_result($result); 

            //if form has been pressed proccess it
            if($_POST["Submit"])
            {
                    //get data from form
                    $ractive = $_POST['pdbactive'];
                    $rid= $_POST['pid'];

                    for($i=0;$i<$count;$i++){
                            echo ($i);
                            echo ("<br />");
                            $stat=($ractive[$i]);
                            $idd=($rid[$i]);

                            $sql_insert="UPDATE 'player2012' SET active='$stat' where id='$idd'";
                            print($sql_insert);
                            echo ("<br />");
                            }
            }

            ?>

目前我只想创建SQL语句,所以我知道它在我开始更新数据库之前有效。所以所有的回声和印刷品都只是我试图找到答案

HELP !!!!!!!!!!!!!!

3 个答案:

答案 0 :(得分:2)

您要插入的表格的确切名称是什么? (区分大小写)。 如果它是小写的,如:UPDATE 'player2012' SET active='$stat' where id='$idd'

- 它应该没问题,但它是大写的 - 你应该删除引号:

{{ 1}}。再次,我会在for循环中添加:UPDATE player2012 SET active='$stat' where id='$idd'echo $rid;以查看我得到的参数是什么。

答案 1 :(得分:0)

我不是100%肯定你在寻找什么,但我认为你想要一个选项,比如每个玩家旁边的复选框,如果选中该框,你点击提交它会删除该玩家吗?

答案 2 :(得分:0)

解决了它。

问题是我在表单输入名称

上缺少“=”
<td><input name"pid[]" id="pid[]" type="text".....

应该阅读

<td><input name="pid[]" id="pid[]" type="text"....

微妙但现在有效!