php 仅提交填充表单的数组中的最后一个值

php submit only giving last value from array that populates form

努力处理单页表单,我想首先从 mysql 查询填充表单,然后使用户能够更新来自文本的几行 table 中每一行中的某些值表单中的输入字段。

代码的目的是通过引用行 ID 来更新字段。

但出于某种原因,我只能更新表单中的最后一行(数组的最后一行)。我已经包含了一些故障排除代码来查看 ID 变量是什么,它总是作为数组的最后一次迭代出现。我想我要么在 while 循环或 for 循环中覆盖 ID 变量。

我尝试将 POST/update 移动到第二个文件,但得到了相同的结果。任何 thoughts/suggestions 将不胜感激

这是减去了数据库连接的代码:

$saveClicked = $_POST["saveClicked"];


{   //  SAVE button was clicked 
    if (isset($saveClicked)) {
        unset($saveClicked);


        $ID = $_POST["ID"]; 

        $win = $_POST["Winner"];
        $winScr = $_POST["WinnerScore"];
        $losScr = $_POST["LoserScore"];         


        $tschedule_SQLupdate = "UPDATE tschedule SET ";

        $tschedule_SQLupdate .=  "Winner = '".$win."', ";
        $tschedule_SQLupdate .=  "WinnerScore = '".$winScr."', ";
        $tschedule_SQLupdate .=  "LoserScore = '".$losScr."' ";
        $tschedule_SQLupdate .=  "WHERE ID = '".$ID."' ";   


        if (mysql_query($tschedule_SQLupdate))  {   

        echo '<p> the number of mysql affected rows is '.mysql_affected_rows().'</p>';
        echo 'this is the value for post id '.$ID;

        } else {
            echo '<span style="color:red; ">FAILED to update the game.</span><br /><br />';
            echo mysql_error();

        }               
    }   
//  END:  SAVE button was clicked   ie. if (isset($saveClicked))
}


{   //  Get the details of all associated schedule records
    //      and store in array:  gameArray  with key >$indx  

        $indx = 0;

        $tschedule_SQLselect = "SELECT * ";
        $tschedule_SQLselect .= "FROM ";
        $tschedule_SQLselect .= "tschedule ";
        $tschedule_SQLselect .= "WHERE week = 1 ";

        $tschedule_SQLselect_Query = mysql_query($tschedule_SQLselect); 

        while ($row = mysql_fetch_array($tschedule_SQLselect_Query, MYSQL_ASSOC)) {

            $gameArray[$indx]['ID'] = $row['ID'];
            $gameArray[$indx]['Date'] = $row['Date'];
            $gameArray[$indx]['week'] = $row['week'];
            $gameArray[$indx]['Favorite'] = $row['Favorite'];               
            $gameArray[$indx]['Line'] = $row['Line'];
            $gameArray[$indx]['Underdog'] = $row['Underdog'];
            $gameArray[$indx]['OU'] = $row['OU'];
            $gameArray[$indx]['Winner'] = $row['Winner'];
            $gameArray[$indx]['WinnerScore'] = $row['WinnerScore'];
            $gameArray[$indx]['LoserScore'] = $row['LoserScore'];   
            $indx++;             
        }

        $numGames = sizeof($gameArray);

        mysql_free_result($tschedule_SQLselect_Query);          
}

{   //      Output 

            echo '<form name ="postGame" action="'.$thisScriptName.'" method="post">';      

                echo '<table border="1">';
                    echo '<tr>
                               <th>ID</th>
                                <th class="date">Date</th>
                                <th class="num">Week</th>
                                <th>Favorite</th>
                                <th class="num">Line</th>
                                <th>Underdog</th>
                                <th class="num">OU</th>
                                <th>Winner</th>
                                <th>WScore</th>
                                <th>LScore</th>
                                <th>Save</th>   
                            </tr>   ';  

    for ($indx = 0; $indx < $numGames; $indx++) {
    $thisID = $gameArray[$indx]['ID'];
    $saveLink = '<input type = "submit" value = "Save" />';

            $fld_ID = '<input type="text" name="ID" value="'.$thisID.'"/>';

            $fld_saveClicked = '<input type="hidden" name="saveClicked" value="1"/>';


            echo $fld_ID;
            echo $fld_saveClicked;
                        echo '<tr>
                                    <td>'.$gameArray[$indx]['ID'].'</td>
                                    <td>'.$gameArray[$indx]['Date'].'</td>
                                    <td>'.$gameArray[$indx]['week'].'</td>
                                    <td>'.$gameArray[$indx]['Favorite'].'</td>
                                    <td>'.$gameArray[$indx]['Line'].'</td>
                                    <td>'.$gameArray[$indx]['Underdog'].'</td>
                                    <td>'.$gameArray[$indx]['OU'].'</td>
                                    <td><input type="text" size =5 name="Winner">'.$gameArray[$indx]['Winner'].'</td>
                                    <td><input type="number" size=5 name="WinnerScore">'.$gameArray[$indx]['WinnerScore'].'</td>
                                    <td><input type="number" size=5 name="LoserScore">'.$gameArray[$indx]['LoserScore'].'</td>
                                    <td>'.$saveLink.'</td>
                                </tr>   ';      

                    }

                    echo '</table>';

                echo '</form>';

echo' <a href ="../schedules/schedView.php">View Schedule</a>';     

}

您的 For 循环正在将数组的最后一个值存储在您的表单中。

$fld_ID = '<input type="text" name="ID" value="'.$thisID.'"/>';

将 ID 值作为数组存储在 HTML 表单中,并在发布表单时获取所有 ID 值并使用相同的 mysql 更新查询进行更新。

您的赢家和输家分数也返回最后的数组值。

您为每一行中的每个字段使用相同的名称,因此当您 post 表单时,只有最后一个可以访问。对这样的字段使用数组表示法:

<input type="text" size =5 name="Winner[]">
                                       ^^

这将为您提供 $_POST['Winner'] 的数组而不是单个值。对其他 <input> 元素执行相同操作。

另外,表单提交后处理表单的代码只处理一个值。您需要修改它以循环遍历这些数组。

警告:

  • 不要将 mysql_*() 用于新代码 - 它已被弃用。现在切换到 mysqli_*()PDO
  • 您的代码容易受到 SQL 注入。使用 mysql_real_escape_string()(或 mysqli 等效项)或更好的方法转义输入变量,切换到准备好的语句。

经过更多研究,我认为我对已经分享的两个答案有了更好的理解。但是我选择了不同的路径并解决了我的问题 - 我将表单标签直接包裹在每一行周围:

    echo '<form name ="postGame'.$indx.'" action="'.$thisScriptName.'" method="POST">';     
    $fld_saveClicked = '<input type="hidden" name="saveClicked" value="1"/>';   
    echo $fld_saveClicked;  
    $fld_ID = '<input type="text" name="ID" value="'.$thisID.'"/>';
    echo $fld_ID;               
    echo '<tr>
            <td>'.$gameArray[$indx]['ID'].'</td>
            <td>'.$gameArray[$indx]['Date'].'</td>
            <td>'.$gameArray[$indx]['week'].'</td>
            <td>'.$gameArray[$indx]['Favorite'].'</td>
            <td>'.$gameArray[$indx]['Line'].'</td>
            <td>'.$gameArray[$indx]['Underdog'].'</td>
            <td>'.$gameArray[$indx]['OU'].'</td>
            <td><input type="text" size=5 name="Winner" id="Winner">'.$gameArray[$indx]['Winner'].'</td>
            <td><input type="number" size=5 name="WinnerScore" id="WinnerScore">'.$gameArray[$indx]['WinnerScore'].'</td>
            <td><input type="number" size=5 name="LoserScore" id="LoserScore">'.$gameArray[$indx]['LoserScore'].'</td>
            <td><button type="submit" />Save</button></td>
        </tr></form>';          

                    }

解决问题的关键步骤之一是使用 var_dump 验证 $_POST 是否确实包含数据。我知道有几种方法可以做到这一点,包括 Hobo 和 Syed 分享的回复,以及使用 javascript,但我真的很高兴我可以用 php.[=11= 实现我的目标]