在 php 生成的表中使用 contenteditable 来更新 mysql

问题描述 投票:0回答:1

假设您有一个通过 php 从 mysql 数据库生成的表,

例如,

 <?php do { ?>
    <tr>
      <td><?php echo $row_sampleOA_set['concentration']; ?> </td>
    </tr>
  <?php } while ($row_sampleOA_set = mysql_fetch_assoc($sampleOA_set)); ?>

您将如何使用 contenteditable 属性使表格单元格可编辑并进行编辑以更新数据库?

php mysql contenteditable
1个回答
0
投票

在标签内只需插入 contentEditable = "true" 。现在您可以编辑表格了

创建一个按钮,onclick在js中执行一个函数,从表中检索数据并向php发送ajax请求。在 php 中使用 mysqli_query 更新表(update table set column = ...);

© www.soinside.com 2019 - 2024. All rights reserved.