因此,我正在製作一個非常基本的站點,某人在文本框中鍵入一些文本並將其張貼到MySQL中。更改頁面上的回顯文本以鏈接到JavaScript或PHP查詢
例子:
這是帖子用冷靜的鏈接 - HTT://www.coolness.com
下面的腳本只是抓住了列從數據庫和回聲它在網上通緝。
<?php
$con = mysql_connect("localhost","####","####");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("####", $con);
$result = mysql_query("SELECT * FROM posts");
while($row = mysql_fetch_array($result))
{
echo $row['post_content'];
echo "<br />";
}
mysql_close($con);
?>
的聯繫是純文本格式,而不是我想PHP或JavaScript的通過將全位給它寫爲超鏈接。
我已經看了一些例子,但是當我嘗試應用它們時似乎沒有任何效果。
任何提示將是偉大的。
此鏈接顯示有人解決同一問題 http://stackoverflow.com/questions/8027023/regex-php-auto-detect-youtube-image-and-regular-links –
此鏈接顯示有人解決同樣的問題 http://stackoverflow.com/questions/8027023/regex-php-auto-detect-youtube-image-and-regular-links –