PHP回声锚链接不起作用

时间:2018-05-29 08:17:00

标签: php echo anchor

我试图回显页面上的链接。它应该是一个引导按钮,但它只是以纯文本形式出现。

这是我的代码。我做错了什么?

echo '<a class="btn btn-info" href='.$url.'>Video Link</a>';

5 个答案:

答案 0 :(得分:0)

你应该用双引号包装你正在考虑的字符串,比如这个

echo '<a class="btn btn-info" href="'.$url.'">Video Link</a>';

答案 1 :(得分:0)

href需要用href =&#34;&#34; 试试-----&gt; HREF =&#34;&#39; $网址&#39;&#34;

答案 2 :(得分:0)

改变这个:

[[9.975 9.975 9.975],
 [9.976 9.976 9.976],
 ..... 
 [9.994 9.994 9.994]]

对此:

echo '<a class="btn btn-info" href='.$url.'>Video Link</a>';

答案 3 :(得分:0)

您不应在单引号内使用单引号,因此您必须将代码更改为此类

 popComponent = (index) => {
    console.log(`in parent-->>${index}`)
    var rendercomponentModified = [
     ...rendercomponent.slice(0,index),
     ...rendercomponent.slice(index+1)
    ];
    var childJsonModified = [
           ...childJson.slice(0,index), 
           ...childJson.slice(index+1)
    ];
     this.setState({ documents: rendercomponentModified,
    Json: childJsonModified,formValues:{} });
   }

答案 4 :(得分:0)

试试这个。我已经在我的localhost中检查了它,它运行正常。

$url = 'https://www.facebook.com/';
echo '<a class="btn btn-info" href='.$url.'>Video Link</a>';

如果您有任何其他问题或出现任何问题,请与我们联系。