我有一個包含此字段的PHP頁面:PHP鏈接調用另一個PHP頁面
<a href src='delcat.php'>Delete</a>
我希望當我按下Delete(刪除)來調用delcat.php併發送類別ID是在一個領域在同一張桌子裏。 任何人都可以幫我達到這個好嗎? 這裏我的完整表的代碼:
<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>");
}
什麼是''? –
'delete「;?>' – Carsten
‘刪除我希望當我按下Delete(刪除)來調用delcat.php併發送類別ID是在同一個表中的字段’是曖昧也許你或其他人可以修改句子 –