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

时间:2015-02-20 11:53:50

标签: php mysql contenteditable

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

例如,

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

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

0 个答案:

没有答案