在一个PHP表单中添加插入,检索,更新和删除

时间:2012-03-05 15:29:20

标签: php forms

如何在一个php表单中添加插入,检索,更新和删除? 我的表单的页面名称是registration1.php,如果我想插入

action=registration.php

但如果我想要4个按钮,那我该怎么办?

1 个答案:

答案 0 :(得分:3)

只需在表单中添加4个提交按钮,在PHP代码中,检查哪一个按下了。

<form action="" method="post">
<input type="text" name="text" value="testing" />
<input type="submit" name="login" value="log in" />
<input type="submit" name="delete" value="delete" />
<input type="submit" name="update" value="time to update" />

单击按钮将生成一个类似于

的$ _POST数组
Array ( [text] => testing [update] => time to update ) // clicked update button, see no loging or delete buttons.