如何在PHP代码中插入href链接?

时间:2018-04-04 16:10:50

标签: php href

我试图将可点击的链接插入PHP代码但没有成功。我只知道HTML,所以我试图插入html href代码,但它不起作用。

原始代码:

echo '<br/>'.__("Your auction isn't live yet, the admin needs to approve it.</br>For more info CLICK HERE.", "AuctionTheme");

现在这就是我的尝试:

echo '<br/>'.__("Your auction isn't live yet, the admin needs to approve it.</br>For more info <a target="_blank" href="www.website.com">CLICK HERE</a>.", "AuctionTheme");

并且它不起作用而是破坏了代码。

任何人都可以帮我使用正确的代码吗?

提前致谢

2 个答案:

答案 0 :(得分:1)

&& !_locationManager

答案 1 :(得分:1)

您的代码中存在一些基本错误。第一,你需要使用适当的包装报价。如果在echo之后有双引号,则需要在锚标记内转义href的双引号:

echo "<a href=\"www.website.com\">Link Here</a>

但是,为了避免必须从双引号中删除,您可以用单引号'包装回声,并使用标准双引号:

echo '<a href="www.website.com">Link Here</a>';

因此,为了便于使用,您的答案应如下:

<?php
    echo '<br/>Your auction isn't live yet, the admin needs to approve it.</br>For more info <a href="www.website.com" target="_blank" >CLICK HERE</a>';
?>