我想知道如何使用while循环和href链接而不是使用提交按钮来解决这个问题。
当我单击该链接时,我会回显循环中的所有内容,但我只想回显我单击的 id。
这是我的小代码:
<?php
while( $profile_images_not_approved_view = mysql_fetch_array($profile_images_not_approved)) {
if (isset($_GET['approve']) == $profile_images_not_approved_view['id'])
{
echo "hello id";
echo $profile_images_not_approved_view['id'];
}
?>
<td class="center">
<a href="?p=testme&approve";?>" name="<?php echo $profile_images_not_approved_view['id'];?>" class="button small grey tooltip"></a>
</td>
<?php } ?>