用链接替换按钮

时间:2012-05-12 12:45:13

标签: php html css

好的,我的代码有效:

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做到这一点,但我不确定如何,有什么建议吗?

3 个答案:

答案 0 :(得分:1)

我认为这应该有用;)

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

if(isset($_GET['button'])&&$_GET['button']==5)

答案 1 :(得分:1)

<a href="?edit_button=1" title="Edit" class="icon-1 info-tooltip">Edit</a>

<?php

if (!empty($_GET['edit_button'])) {
    // your actions
}

答案 2 :(得分:1)

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