0

好的,我有这个有效的代码:

echo '<input name="edit'.$i.'" type="submit" value="Edit" />';
$edit_button="edit".$i;

if (isset($_POST[$edit_button]))

但现在我正在使用一个管理模板/css 和一个我想使用的 css 类,它只适用于链接或<a>标签。如何转换上面的代码以使用它:

echo '<a href="" title="Edit" class="icon-1 info-tooltip"></a>';

基本上我想看看链接是否被点击但刷新到同一页面,我想我可以用 $_GET 做到这一点,但我不知道怎么做,有什么建议吗?

4

3 回答 3

1

我认为这应该可行;)

echo '<a href="thesamepage.php?button=5" title="Edit" class="icon-1 info-tooltip"></a>';

if(isset($_GET['button'])&&$_GET['button']==5)
于 2012-05-12T12:49:24.580 回答
1
<a href="?edit_button=1" title="Edit" class="icon-1 info-tooltip">Edit</a>

<?php

if (!empty($_GET['edit_button'])) {
    // your actions
}
于 2012-05-12T12:50:53.300 回答
1

您可以将“href”属性设置为“script.php?var=val”。然后使用 $_GET['var']

于 2012-05-12T12:53:10.783 回答