从div中的数据库中获取可点击的锚点

时间:2016-08-04 10:06:48

标签: php html

我在数据库中的文本字段存储如下:

I like my <a href='www.website.com'>Website</a>

所以我的变量是:

$text = "I like my <a href='www.website.com'>Website</a> ";

当我拿到它的时候,就像那样

I like my <a href='www.website.com'>Website</a>

我怎样才能让它像这样点击?感谢

  

我喜欢我的Website

1 个答案:

答案 0 :(得分:2)

您需要回复您的文字

echo $text;

如果您收到编码文本,请使用某些解码:

echo html_entity_decode($text);