欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

从数据库中提取的带有HTML标签的数据经过XML传输后HTML标签消失了,如何保存用XML传输并且保存带有HTML标签的数据?

程序员文章站 2022-06-12 21:00:37
...
$query=mysql_query("SELECT text from opus where id=$id",$dbconn);
while($row=  mysql_fetch_array($query)){
    $text3=$row['text'];
    $text4=html_entity_decode($text3);
    echo $text4;
}

如上面这样 直接echo $text是OK的

但是像下边这样用XML返回到前端页面格式就变了

echo "";
echo "";
echo "";
echo "$text4";
echo "$id";
echo "";
echo "";

求解~~

回复内容:

$query=mysql_query("SELECT text from opus where id=$id",$dbconn);

while($row=  mysql_fetch_array($query)){
    $text3=$row['text'];
    $text4=html_entity_decode($text3);
    echo $text4;
}

如上面这样 直接echo $text是OK的

但是像下边这样用XML返回到前端页面格式就变了

echo "";
echo "";
echo "";
echo "$text4";
echo "$id";
echo "";
echo "";

求解~~