gpt4 book ai didi

php - 在 php 中为 html 表上的行添加删除按钮

转载 作者:行者123 更新时间:2023-11-29 04:23:01 24 4
gpt4 key购买 nike

我试图让它有一个可以按下的删除按钮,它会删除您按下删除按钮的列。我进行了广泛的研究,但似乎无法弄清楚。

这是 PHP 和 HTML:

<?php


$username="xxx";
$password="xxx";
$database="xxx";
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");


$query="SELECT * FROM reservation__date ORDER BY reservation_date DESC";
$result = mysql_query ($query) or die(mysql_error());

$num=mysql_numrows($result);
mysql_close();
?>
<table width="700" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC" id="myTable" class="tablesorter">
<thead>
<tr valign="bottom" bgcolor="#000000">
<th width="128"><span class="style1b"><strong>Reservation&nbsp;ID</strong></span></th>
<th width="829" bgcolor="#2E64FE"><span class="style1b"><strong>Reservation&nbsp;Date</strong></span></th>
<th width="829"><span class="style1b"></span></th>
<!-- <th width="90"><span class="style1b"><strong>Agent/client</strong></span></th>-->
</tr>
</thead>
<?php

$i=0;
while ($i < $num) {

$f1=mysql_result($result,$i,"reservation_id");
$f2=mysql_result($result,$i,"reservation_date");
?>

最佳答案

<?php    
$i=0;
while ($i < $num) {
$f1=mysql_result($result,$i,"reservation_id");
$f2=mysql_result($result,$i,"reservation_date");
?>
<tr>
<td><?echo $f1; ?></td>
<td><?echo $f2; ?></td>
<td><a href='delete.php?id=<?php echo $f1; ?>'>del</a></td>
</tr>
<? } ?>

在 delete.php 中

$username="xxx";
$password="xxx";
$database="xxx";
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");

$query = "delete from reservation__date where reservation_id=$_GET[id]";
$rs = mysql_query ($query);
if($rs){
header('Location: yourfile.php');
}

关于php - 在 php 中为 html 表上的行添加删除按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18272586/

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