php如何在表单中保留html标签
发布网友
发布时间:2022-09-25 12:44
我来回答
共2个回答
热心网友
时间:2023-09-17 16:42
在PHP文件中,可以先对html标签符号进行转义替换,然后做输出,其中 $text 是从表单接收到的 input 的 value 值:
<?php
$text=str_replace("<","<",$text); //替换<
$text=str_replace(' " ',""",$text); //替换"
$text=str_replace(">",">",$text); //替换>
echo $text;
?>
此时页面输出的就是上面的value,未经Html解析过的。
热心网友
时间:2023-09-17 16:42
在PHP文件中,可以先对html标签符号进行转义替换,然后做输出,其中 $text 是从表单接收到的 input 的 value 值:
<?php
$text=str_replace("<","<",$text); //替换<
$text=str_replace(' " ',""",$text); //替换"
$text=str_replace(">",">",$text); //替换>
echo $text;
?>
此时页面输出的就是上面的value,未经Html解析过的。
热心网友
时间:2023-09-17 16:42
将HTML 转换为实体就好了
<?php
echo htmlentities($_POST['test'],ENT_COMPAT ,'utf-8');
?>
<form method="post" action=''>
<input type='text' name="test" value='<div class="test">什么乱七的东东</div>' />
<input type="submit" />
</form>
热心网友
时间:2023-09-17 16:42
将HTML 转换为实体就好了
<?php
echo htmlentities($_POST['test'],ENT_COMPAT ,'utf-8');
?>
<form method="post" action=''>
<input type='text' name="test" value='<div class="test">什么乱七的东东</div>' />
<input type="submit" />
</form>