单击时更新表值和时间戳

时间:2013-09-18 19:53:09

标签: javascript php mysql sql button

http://www.ems-complete.com/peasi/dispatcher/dispatcher_screen.php

我想点击一个按钮更新MySQL表需要更改字段的值。

即。初始值为2,单击时将更改为3.

如果可能的话,当我点击该行时会弹出更多数据和可点击的选项。

这是我试过的代码

    <td><button type="button" onclick="<?php 
$row = $fetchselupcoming['id'];
$dispatch ='UPDATE incidents
    SET status=3
    WHERE id=$row' 
?>">Dispatch</button>  </td>

1 个答案:

答案 0 :(得分:0)

您无法在JavaScript onclick事件处理程序中嵌入这样的PHP代码。为什么不将按钮作为提交到页面的表单的一部分,可能本身,然后使用PHP来更新MySQL记录?