gpt4 book ai didi

javascript - 如何制作提交按钮,删除和更新相同的表单,php

转载 作者:行者123 更新时间:2023-11-29 03:35:54 25 4
gpt4 key购买 nike

我正在制作一个表单,当用户使用复选按钮选中一行时,他可以删除或更新它......但只有删除按钮有效。我不知道如何在同一个表单中制作两个提交按钮。我希望按下删除按钮去 delete.php 和更新按钮去两​​个 update.php ...下面是我的表格...

<form name="form1" method="post" action="delete.php">
<table >

<th>

<th ><strong>Emri </strong></th>
<th ><strong>Pershkrimi </strong></th>
<th><strong>Ora</strong></th>
</th>

<?php

while ($row=mysql_fetch_array($result)) {
?>

<tr>
<td ><input name="checkbox[]" type="checkbox" value="<?php echo $row['Id_Akt']; ?>"></td>
<td style="font-size:0.9em"><?php echo $row['Emri']; ?></td>
<td ><?php echo $row['Pershkrimi']; ?></td>
<td><?php echo $row['Ora']; ?></td>
</tr>

<?php
}
?>


</table>
<input class="button" name="delete" type="submit" value="Fshij" style="margin-left:4%; margin-top:50px; width:15%">

<br>


<input class="button" name="update" type="button" value="Update" style="margin-left:4%; margin-top:20px; width:15%" >

</form>

请帮助我。提前致谢

最佳答案

你应该像这样改变你的按钮的值

<button type="submit" name="send" value="delete"> delete </button><br/>
<button type="submit" name="send" value="update">update</button>

然后在你的“delete.php”页面检查你想要删除哪一个

if($_POST['send']=='update')
{ UPDATE table_name SET id='Your_ID' }
else
{DELETE FROM table_name WHERE id='Your_ID'}

关于javascript - 如何制作提交按钮,删除和更新相同的表单,php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21802345/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com