我正在使用表单将数据发布到mysql。 无论什么时候我写作<它在'& lt;'中转到数据库形成。我想将它作为<发送到数据库。 表格开头如下: -
<form action="submit.php" method="post" enctype="multipart/form-data" accept-charset="utf-8" name="SEdit"> `
和类型字段被视为
<?
if($field_type=="input")
{
?>
<input name="<? echo $spec_id;?>" type="text" class="form-control" value="<? echo $spec_value;?>" />
<?
}
else
{
?>
<textarea name="<? echo $spec_id;?>" type="text" class="form-control"><? echo $spec_value;?></textarea>
<?
}
?>
我现在要做什么?
答案 0 :(得分:0)
如果您有<
并且想要解码将其转换为<
,请使用:
$html = html_entity_decode($text);
echo html_entity_decode('<'); // prints <