我的情况如下:
我有一个数据库,其中包含TEXT类型的“description”列。在HTML中,此列表示为textarea。当我输入文字时:
然后,它如何存储在数据库中:
然后,在前端:
如您所见,它正在显示< p>标签
这是用于在前端显示textarea作为后端的代码:
echo '<textarea class="form_textarea os-input" name="' . $this->GetName() . '" id="form_' . $this->GetName() . '"';
$required = $this->GetRequired();
if(isset($required) && $required == true)
{
echo ' required';
}
echo '>' . $this->GetValue() . '</textarea>';
这是奇怪的部分:当我在屏幕上打印它时,没有textarea:
从数据库中获取值的代码在前端和后端也是相同的。这不是一个“客户端”的事情吗?