-4

我有一个包含此字段的 php 页面:

<a href src='delcat.php'>Delete</a>

我希望当我按下 Delete 键调用 delcat.php 并发送一个位于同一个表中的字段中的 categoryid。任何人都可以帮助我达到这个吗?这是我的完整表格代码:

<table border="0" align='center' class="styled-table">
            <tr class="thh">
    <th class="thh">Category Code</th>
            <th class="thh">Category Name </th>
            <th class="thh">Category IMage </th>
            <th class="thh">Edit</th>
    <th class="thh">Delete</th>
            </tr>
    <?php
    for ($counter = 0; $row = mysql_fetch_row ($resultSet); $counter++) {
      print ("<tr align='center' class='trh'>");
      print ("<td align='center' class='tdh'>$row[0]</td>");
      print ("<td align='center' class='tdh'>$row[1]</td>");
      print ("<td align='center' class='tdh'><img src='$row[2]' width='50' height='50'></td>");
      print ("<td align='center' class='tdh' width='50' align='center'><a href ='#'>Edit</a></td>"); 
      print ("<td align='center' class='tdh' width='50' align='center'><a href ='delcat.php'>Delete</a></td>");  
      print("</tr>");       
      } 
4

2 回答 2

0

改变这个:

<a href src='delcat.php'>

对此:

<a href='delcat.php?categoryid=" . $row[0] . "'>
于 2013-06-27T10:20:03.817 回答
0

您可以在 href 中将类别 ID 作为查询字符串发送。

<a href='delcat.php?categoryId=".$row[0]."'>Delete</a>

$_GET['categoryId']并在 delcat.php 页面上检索使用。

另一种方法是您可以使用http_build_str

于 2013-06-27T10:27:34.980 回答