如何从MySQL表的纯文本中检测URL并在表行中回显

时间:2019-02-08 15:45:25

标签: php mysql

enter image description here大家好,

我正在通过echo从mysql表的'comment'列中检索值。但是该列同时具有纯文本和一些url。在显示值时,我希望从文本中识别链接并使之链接可点击的。

这是我的代码

 $postid= $_GET['post_id'];
          $sql = mysql_query("SELECT * from tblcomment as c join tbluser as u on c.user_Id=u.user_Id where post_Id='$postid' order by datetime");
          $num = mysql_num_rows($sql);
          if($num>0){
          while($row=mysql_fetch_assoc($sql)){

                 echo "<p class='well'>".$row['comment']."</p>";
          }

        }

谢谢。

0 个答案:

没有答案