$title = $_POST['title'];
$post = stripslashes($_POST['TextArea']);
$link = preg_replace('"(http://www\S+)"','<a href="$1">$1</a>', $post);
echo $link;
フォームを送信した後、上記のスクリプトはテキストエリア内のすべてのリンクを置き換え、画像の結果は壊れます。
画像ではなくリンクを置き換える方法はありますか?
URLは完璧に機能しますが、ブラウザの画像の結果は
<img src="<a href="http://...myimage.jpg"">http://.../myimage.jpg"</a> height="150" width="150">
ありがとうございました