第一个页面,一个表单,一个文本域
内容为:
<form action="tt.php" method="post">
<textarea name="content1" cols="" rows="">
<IMG src="http://localhost/uploadfile/20070823124254643.jpg" />
</textarea>
<input name="" type="submit" />
</form>
第二页接收:
$con=$_REQUEST["content1"];
echo $con;却发现,$con的内容为 src=\"http://localhost/uploadfile/20070823124254643.jpg\"
而直接右键点图片看属性,链接位:http://localhost/"http://localhost/uploadfile/20070823124254643.jpg
这是为什么啊?
应该怎么改呢