简体   繁体   English

使用复选框和textarea数据更新MYSQL DB(在PHP中)

[英]Updating MYSQL DB with checkbox and textarea data (in PHP)

I'm using a table to update a database, the table has 264 checkboxes which can be checked and unchecked then updated on the database. 我正在使用一个表来更新数据库,该表具有264个复选框,可以选中和取消选中它们,然后在数据库上进行更新。

I'm doing this by posting data on the form, using a while loop to set all fields to blank ( the value of the checkbox and the textarea value) for each respective field, then using a foreach loop to update each row in the database with the value of the checkbox. 我这样做是通过在表单上发布数据,使用while循环将每个字段的所有字段设置为空白(复选框的值和textarea值),然后使用foreach循环更新数据库中的每一行复选框的值。

Now, what I want to do is add the textarea value for each ticked checkbox into the database as well, what i cant figure out is how to do this? 现在,我想做的是将每个选中的复选框的textarea值也添加到数据库中,我不知道该怎么做?

This is my update code: 这是我的更新代码:

if (isset($_POST["update"])) {
$seolistRes2 = mysql_query($seolistQ) or die(mysql_error());
while ($seolistRow2 = mysql_fetch_array($seolistRes2)) {
    $wsID1 = $seolistRow2["worksheetID"];
    $updateWSQ2 = "UPDATE seo_work SET taskValue=0, taskInfo='' WHERE worksheetID=$wsID1 AND userID=$userID";
    mysql_query($updateWSQ2) or die(mysql_error());
}

$item = $_POST;
foreach($item as $key => $value) {
    $wsID = str_replace("checkbox","",$key);

    if (is_numeric($wsID)) {
        $updateWSQ = "UPDATE seo_work SET taskValue=$value taskInfo=$value WHERE worksheetID=$wsID AND userID=$userID";
        mysql_query($updateWSQ) or die(mysql_error());
        header("Location: worksheet.php?y=".$seoworkyear."&userID=$userID&action=success");
    }
}

} }

This is checkbox and textarea code: (please note this is within a form) 这是复选框和textarea代码:(请注意,这是在表单中)

$currentTask = '';
echo "<tr class='tr'>";
while ($seolistRow = mysql_fetch_array($seolistRes)) {
    $taskValue = $seolistRow["taskValue"];
    $worksheetID = $seolistRow["worksheetID"];
    $taskName = $seolistRow["taskName"];
    $taskInfo = $seolistRow["taskInfo"];

    if ($taskValue == 1) {
        $taskDone = "<input type='checkbox' value='1' class='checkbox' name='checkbox".$worksheetID."' id=checkbox'".$worksheetID."' checked='checked' />".
        "<textarea class='textarea' name='textarea".$worksheetID."' id=textarea'".$worksheetID."'>" . $taskInfo . "</textarea>";
    }
    else {
        $taskDone = "<input type='checkbox' value='1' class='checkbox' name='checkbox".$worksheetID."' id='checkbox".$worksheetID."' />".
        "<textarea class='textarea' name='textarea".$worksheetID."' id=textarea'".$worksheetID."'>" . $taskInfo . "</textarea>";
    }
    if ($currentTask != $taskName) {
        echo "</tr>";
        echo "<tr class='tr'>";
        echo "<td class='task'>".$taskName."</td>";
    }
    echo "<td class='tick'>".$taskDone."</td>";
        $currentTask = $taskName;
}
echo "</tr>";

Use your HTML form like shown below. 使用您的HTML表单,如下所示。

$currentTask = '';
echo "<tr class='tr'>";
while ($seolistRow = mysql_fetch_array($seolistRes)) {
    $taskValue = $seolistRow["taskValue"];
    $worksheetID = $seolistRow["worksheetID"];
    $taskName = $seolistRow["taskName"];
    $taskInfo = $seolistRow["taskInfo"];

    if ($taskValue == 1) {
        $taskDone = "<input type='checkbox' value='1' class='checkbox' name='checkbox[".$worksheetID."]' id='checkbox[".$worksheetID."]' checked='checked' />".
        "<textarea class='textarea' name='textarea[".$worksheetID."]' id='textarea[".$worksheetID."]'>" . $taskInfo . "</textarea>";
    }
    else {
        $taskDone = "<input type='checkbox' value='1' class='checkbox' name='checkbox[".$worksheetID."]' id='checkbox[".$worksheetID."]' />".
        "<textarea class='textarea' name='textarea[".$worksheetID."]' id='textarea[".$worksheetID."]'>" . $taskInfo . "</textarea>";
    }
    if ($currentTask != $taskName) {
        echo "</tr>";
        echo "<tr class='tr'>";
        echo "<td class='task'>".$taskName."</td>";
    }
    echo "<td class='tick'>".$taskDone."</td>";
        $currentTask = $taskName;
}
echo "</tr>";

See the modified name and id of your textarea and checkbox. 查看修改后的文本区域和复选框的名称和ID。 I have modified it to textarea[SOME_WORKSHEET_ID] and checkbox[SOME_WORKSHEET_ID] respectively. 我已将其分别修改为textarea [SOME_WORKSHEET_ID]和复选框[SOME_WORKSHEET_ID]。

So, when you submit the form, you will receive those checkbox and textarea value as an array, with worksheetId as an index. 因此,当您提交表单时,您会收到这些复选框和textarea值作为数组,而worksheetId作为索引。 You can use this [] technique to retrieve the values of the textarea and checkbox, or as many field you want to add in form. 您可以使用此[]技术来检索textarea和复选框的值,或要在表单中添加的尽可能多的字段。

Use above HTML structure and check the $_POST array. 使用上面的HTML结构并检查$ _POST数组。

Hope this will help.. 希望这会有所帮助..

Thanks! 谢谢!

Hussain. 侯赛因

You should be able to get the value in the textarea using $_POST['textarea' . 您应该可以使用$ _POST ['textarea'来获取textarea中的值。 $wsID] after your call to is_numeric. $ wsID]调用is_numeric之后。

Here is another approach, not completely tested, but hopefully you get the idea... 这是另一种方法,尚未完全测试,但希望您能理解。

if (isset($_POST["update"])) 
{
    // All to blank
    $seolistRes2 = mysql_query($seolistQ) or die(mysql_error());
    while ($seolistRow2 = mysql_fetch_array($seolistRes2)) 
    {
        $wsID1 = $seolistRow2["worksheetID"];
        $updateWSQ2 = "UPDATE seo_work SET taskValue=0, taskInfo='' WHERE worksheetID=$wsID1 AND userID=$userID";
        mysql_query($updateWSQ2) or die(mysql_error());
    }

    // Re use your result from the select to go through all the known IDs
    foreach($seolistRow2 as $i => $data) 
    {
        // Obtain the ID
        $id = $data['worksheetID'];

        // Get the checkbox value for current ID
        $checkbox_wsID = $_POST['checkbox' . $id];

        // Get the textarea value for current ID
        $textarea_wsID = $_POST['textarea' . $id];

        // Update the Row using mysql_escape
        $updateWSQ = "UPDATE seo_work " . 
        "SET taskValue = '" . mysql_escape_string($checkbox_wsID) ."' taskInfo = '" . mysql_escape_string($textarea_wsID) ."'" .
        "WHERE worksheetID=$id AND userID=$userID";

        mysql_query($updateWSQ) 
            or die(mysql_error());

        header("Location: worksheet.php?y=".$seoworkyear."&userID=$userID&action=success");         
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM