好的,所以对于我的网站,我允许我的用户对自己或他们喜欢的任何内容进行描述,但是当我尝试使用 [ENTERKEY] 进行休息时,<textarea>
它看起来像这样:
Hello, I am John Smith.
Phone#: (123)456-7890
I enjoy web-browsing.
当我返回页面时,它看起来完全一样(它将它们当前的描述放在编辑框中)。这就是我要的。我查看了 PHP 数据库,它看起来仍然一样。这又是我想要的。但是在个人资料页面上看起来像这样
Hello, I am John Smith. Phone#: (123)456-7890 I enjoy web-browsing.
它包含在带有这些样式标签的 div 中,就像这样
<div style="width: 250px; min-height: 50px; margin: auto; font-weight: normal; text-align: center; padding: 2px; margin-bottom: 5px;">
<?php echo $description; ?>
</div>
我很好奇为什么它会这样做任何帮助将不胜感激:D。