将表值更新到数据库

时间:2018-05-04 14:10:46

标签: php html mysql sql sql-update

我所拥有的是基于html的网站,并且包含数据库中的行。

我想要的是什么: 我希望它用1个按钮来更新字段,我现在遇到的问题是它不会更新正确的行。它将更新数据库中的第一个。

我希望它只更新已编辑的内容(例如10个中的1个或2个),其余部分保持不变。

How my page looks like

How the database is looking

$PAGES = $app->get_pages();
  foreach($PAGES as $Pages){
    echo "
      <tr>
      <td>".$Pages['id']."</td>
       <form action='' method='post'>
      <td><input type='text' class='form-control profiel' name='PageName' value='".$Pages['naam']."'</td>
      <td><input type='text' class='form-control profiel' name='PageUrl' value='".$Pages['url']."'</td>
      <td><input type='text' class='form-control profiel' name='PageStatus' value='".$Pages['status']."'</td>
      <td><input type='text' class='form-control profiel' name='PagePos' value='".$Pages['positie']."'</td>

       <input type='hidden' name='pageID' value='".$Pages['id']."'>
       <td><button type='submit' name='deletePage'><i class='fa fa-trash'></i></button></td>
        </tr>
        ";
       }
      echo "
        </tbody></table>
         <button type='submit' class='btn btn-danger' name='updatePage'>Bewerk</button>
         </form>



if(isset($_POST['updatePage'])){
                unset($updateVAL);
                $updateVAL['naam'] = $app->check_string($_POST['PageName']);
                $updateVAL['url'] = $app->check_string($_POST['PageUrl']);
                $updateVAL['status'] = $app->check_string($_POST['PageStatus']);
                $updateVAL['positie'] = $app->check_string($_POST['PagePos']);
                $app->update_tabel('pages', $updateVAL);
                }

更新功能:

public function update_tabel($tabel, $updateVAL){
        $q = '';
        foreach ($updateVAL as $key => $value) {
            $value  = str_replace("'","&#39;",$value);
            $q .= "`".$key."` = '".$value."',";
        }

        if(isset($q) && ($q !='')) {
            $q = substr($q,0,-1);
            $this->database->query("UPDATE ".$tabel." SET ".$q." LIMIT 1");
            $this->database->execute();
        }   
    }

示例

例如,如果我eddit'支持'并制作它的'Supporttt'它将在数据库中编辑它它会将'Home'设置为'Suporttt'并且它不会改变'支持'到'Suporttt'所以它不会更新正确的记录

2 个答案:

答案 0 :(得分:0)

您的查询应如下所示:

$this->database->query("UPDATE ".$tabel." SET ".$q." WHERE id='".$id."' LIMIT 1");

答案 1 :(得分:0)

这是你需要做的。您会看到设置了一个名为pageID的隐藏字段。将该隐藏字段用作更新查询的where子句条件。

更改代码如下

    if(isset($_POST['updatePage'])){
            unset($updateVAL);
            $updateVAL['naam'] = $app->check_string($_POST['PageName']);
            $updateVAL['url'] = $app->check_string($_POST['PageUrl']);
            $updateVAL['status'] = $app->check_string($_POST['PageStatus']);
            $updateVAL['positie'] = $app->check_string($_POST['PagePos']);
$id = $app->check_string($_POST['pageID']);

            $app->update_tabel('pages', $updateVAL,$id);
            }

更改更新功能如下

    public function update_tabel($tabel, $updateVAL,$id){
    $q = '';
    foreach ($updateVAL as $key => $value) {
        $value  = str_replace("'","&#39;",$value);
        $q .= "`".$key."` = '".$value."',";
    }
rtrim($q,',');
$q .= " WHERE id = $id";

    if(isset($q) && ($q !='')) {
        $q = substr($q,0,-1);
        $this->database->query("UPDATE ".$tabel." SET ".$q." LIMIT 1");
        $this->database->execute();
    }   
}