在while循环项中提供唯一ID

时间:2013-12-17 12:42:24

标签: php while-loop

如何为while循环中的项目提供唯一ID。

示例:

while ($row = mysql_fetch_array($query)){
 echo "$row['items']; <a href=\"GoToPageToEditThisItem\">Edit</a>";
}

输出:http://prntscr.com/2bto7g

所以我可以编辑相应的项目。

2 个答案:

答案 0 :(得分:2)

假设您的表中有ID(自动递增/唯一),

while ($row = mysql_fetch_array($query)){
 echo $row['items'] . '<a href="editItem.php?id=' . $row['id'] . '">Edit</a>';
}

然后,您可以使用$_GET["id"]访问该项目。

答案 1 :(得分:0)

$id = 0;
while ($row = mysql_fetch_array($query)){
 $id = $row['id'];
 echo $row['items'].'<a href=\"GoToPageToEditThisItem\id\$id">Edit</a>';
}