我从表单发送数据,其中 textarea 包含 html 标签。在 PHP 方面,我看不到它们,使用:
echo "<pre>";
print_r( $_POST );
echo "</pre>";
exit();
我得到:
段落标签哪里去了?
在源代码中,它们显然已经消失了:
<pre>Array
(
[mode] => save_product
[id] => 1
[title] => Banana Shake
[categoryid] => 1
[serving] => 34.50
[orderby] => 10
[intro] => Intro
[instructions] => Empty contents of packet into a shaker or blender, add 200-240ml of cold water and shake/mix until fully dissolved.
Consume within 10 minutes for full nutritional benefit.
...</pre>
编辑
我正在使用 x-Cart 的引擎来操作数据,可能是 x-Cart 剥离了这些标签。