PHPSQL将id和文本导入testarea,然后在对文本进行更改后发布这两个值

lp0sw83n  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(286)

因此,我有一个名为names.html.php的文件,它可以轻松地显示sql表中表中的数据。它有一个编辑和删除按钮。“编辑”按钮允许用户编辑表格“注解”列中的文本,该列是长文本值(但以文本开头)。
edit按钮将所选记录的id发送到editnote.php,然后使用databasefunctions.php中的函数打开该记录,并使用editnote.html.php显示该记录。
当我更改文本区域框中的文本并单击“保存”时,我的问题就出现了。没有出现错误,但表中的文本没有更新。我知道id值被正确传递,但是我想知道textarea发布不刷新是否有问题?或者有两个来自同一表单的post值导致了一些问题?无论哪种方式,我都不知道如何解决这两个问题,因此非常感谢您的帮助:)
名称.html.php

<blockquote>
  <p>

  <?=htmlspecialchars($Names['Name'], ENT_QUOTES, 'UTF-8')?>
  <?=htmlspecialchars($Names['Notes'], ENT_QUOTES, 'UTF-8')?>
  <?=htmlspecialchars($Names['Punch_IN_Time'], ENT_QUOTES, 'UTF-8')?>
  <?=htmlspecialchars($Names['Status'], ENT_QUOTES, 'UTF-8')?>

  <a href="EditNote.php?idss=<?=$Names['Punch_ID']?>">Edit</a>

  <form action="DeleteEntry.php" method = "post">
    <input type="hidden" name="ids" value="<?=$Names['Punch_ID']?>">
    <input type="submit" value="Delete">
  </form>
  </p>
</blockquote>
<?php endforeach; ?>

编辑注解.php

<?php
include '_DIR_' . '/../../Include/DatabaseConnection.php';
include '_DIR_' . '/../../Include/DatabaseFunctions.php';

try {
  if (isset($_POST['NotePage'])) {
    $note = (string)$_POST['NotePage'];
    $IDs = (int)$_POST['Pid'];

    UpdateNotes($pdo, $IDs, $note);

  header('location: Punchinoutlist.php');
  }else{
    $Note = getPunchLine($pdo, $_GET['idss']);

    $title = 'Edit Note';

    ob_start();

    include '_DIR_' . '/../../Templates/EditNote.html.php';

    $output = ob_get_clean();
  }
} catch (PDOException $e) {
  $title = 'An error has occurred';

  $output = 'Database error: ' . $e->getMessage() . ' in ' .$e->getFile() . ':' . $e->getLine();
}

include '_DIR_' . '/../../Templates/Layout.html.php';

 ?>

编辑注解.html.php

<form action="" method="post">
  <input type="hidden" name"Pid" value="<?=$Note['Punch_ID'];?>">
  <label for = "NotePage">Type your new note here:
  </label>
  <textarea id = "NotePage" name="NotePage"
    rows="3" cols ="40"><?=$Note['Notes']?>
  </textarea>
  <input type="submit" value="Save">
</form>

数据库函数.php

// Main query function that all fucntions refer //

function query($pdo, $sql, $parameters = []){
  $query = $pdo->prepare($sql);
  $query->execute($parameters);
  return $query;
 }

//update function for updating the note column of a certain record in the punch_in_out table //

function UpdateNotes($pdo, $id, $Notes){
  $parameters = [':Notes' => $Notes, ':id' => $id];

  $query = 'UPDATE `punch_in_out` SET `Notes` = :Notes WHERE `Punch_ID` = :id';

  query($pdo, $query, $parameters);
}
?>
bcs8qyzn

bcs8qyzn1#

当你离开的时候你好像没有拿到身份证 POST 文本更新,因为您缺少 = 之后 name 在你的html里。

// you have
 <input type="hidden" name"Pid" value="<?=$Note['Punch_ID'];?>">

// you should have
 <input type="hidden" name="Pid" value="<?=$Note['Punch_ID'];?>">

相关问题