<?php
$str='<html>
<head>
<title>Here-Doc</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<table border=0 width=100%>
<tr>
<td>测试</td>
</tr>
</table>
</body></html>';
$mysql_link=mysql_connect("localhost","root","");
mysql_select_db("test");
$query="insert into test (title,content) values ('test','".addslashes($str)."')";
$result=mysql_query($query);
$id=mysql_insert_id();
$query="select * from test where id='$id'";
$result=mysql_query($query);
$row=mysql_fetch_array($result);
echo $row[content];
?>

解决方案 »

  1.   

    楼上的:
    aaaa
           bbbbb
                     ccccccc
    这样的格式可以正常显示吗?就是不要把空格(or tab)去掉
      

  2.   

    1、输出的时候:
    $content=str_replace("\r\n","<br>",$row[content]);
    $content=str_replace(" ","&nbsp;",$content);
    $content=nl2br($content);
      

  3.   

    我想请问一下:
    aaaa
           bbbbb
                     ccccccc
    你这个内容是什么??包含HTML代码吗??还是直接从<textarea></textarea>中取出来的???
      

  4.   

    包含html和php代码
    ================================================================CSDN 论坛助手 Ver 1.0 B0402提供下载。 改进了很多,功能完备!★  浏览帖子速度极快![建议系统使用ie5.5以上]。 ★  多种帖子实现界面。 
    ★  保存帖子到本地[html格式]★  监视您关注帖子的回复更新。
    ★  可以直接发贴、回复帖子★  采用XML接口,可以一次性显示4页帖子,同时支持自定义每次显示帖子数量。可以浏览历史记录! 
    ★  支持在线检测程序升级情况,可及时获得程序更新的信息。★★ 签名  ●  
         可以在您的每个帖子的后面自动加上一个自己设计的签名哟。Http://www.ChinaOK.net/csdn/csdn.zip
    Http://www.ChinaOK.net/csdn/csdn.rar
    Http://www.ChinaOK.net/csdn/csdn.exe    [自解压]
      

  5.   

    寫入數據庫時用:
    $content=htmlspecialchars($_POST[content]);
    $content=nl2br($content);正常輸出.
      

  6.   

    处理制表符:$content=str_replace("\t","&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;",$content);