我正在通过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>";
}
}
谢谢。