我想使用<button>
来更新我的数据库。
我已经看到使用<form>
和$_Post
进行了大量更新示例。
是否可以通过单击按钮并触发更新功能来更新数据库?
<div class='img'>
<div class='col-md-3'>
<div class='thumbnail'>
<img class='img-responsive' src='xxx'>
div class='caption' align='center'>
<button type='button' class='btn btn-Primary'>Update Image</button>
<button type='button' class='btn btn-Danger'>Delete Image</button>
</div></div></div>
答案 0 :(得分:0)
您可以使用为PHP脚本设置了action属性的表单,然后查找其中一个表单变量
{
_id: 2,
username: Alice,
following: false
}
{
_id: 3,
username: Kate
following: true
}
但这确实需要页面刷新。