如何在状态栏中隐藏链接

时间:2013-03-05 15:26:19

标签: php html

我无法理解如何将状态栏中的链接隐藏到guest,我的php代码如下:

//file column
    echo '<td width="75%" class="default_td" align="left" valign="top"><a class="default_a" href="', $this_file;
    $npart = $dir . $value;
    if (preg_match('/\|$/', $value)) //it is a link, not an actual file
    {
        $value = substr($value, 0, -1);
        $npart = substr($npart, 0, -1);
        $display = get_stored_info($value, $dir.$links_file);
        if ($display == '')
        {
            $display = $value;
        }
        echo 'dir=', translate_uri($subdir), '&amp;link=',
            translate_uri($value), '" title="Click here to Download ', $filename, '">',
            icon(ext($display)), htmlentities($display), '</a>';
    }

我找到了一个方法,该方法工作html很好。但我怎么能应用我上面的PHP代码的方法或它是如何工作的?方法如下:

<a style="cursor: pointer"  onclick="javascript: window.location = 'http://www.mydomain.com/';">Go To SO</a>

2 个答案:

答案 0 :(得分:1)

使用此代码:

<a href="http://pustakakoran.com" onMouseOver="window.status='Go to MyWebsite'; return true;" onMouseOut="window.status='';" >PustakaKoran</a>

答案 1 :(得分:0)

只需回显PHP中的字符串,但记得要逃避引号吗?

<?php
    echo '<a style="cursor: pointer"  onclick="javascript: window.location = \'http://www.mydomain.com/\';">Go To SO</a>';
    // Remember to escape 's as they're also used to create the string       ^^                        ^^
?>

另外; 请不要发布您的问题的链接作为对其他问题的评论。相反,请尝试使用有效标记标记您的帖子,以便人们在其首页上看到您的问题。对于您的帖子,我建议 甚至

为什么要以任何方式隐藏链接?如果您有隐藏数据,请考虑隐藏字段,$_SESSION变量,$_POST变量,Cookie等。