前端之家收集整理的这篇文章主要介绍了
php – Textarea在从数据库中检索时显示额外的空间?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个简单的
PHP文件,从textarea里面的
mysql数据库显示获取信息,但是当我从浏览器打开它时,它在textarea里面的文本的开头和结尾
显示了额外的空间
这是它的外观(数据库文本没有额外的空间)
这就是我检索文本所做的
<textarea name="text" rows="9">
<?PHP echo $fetchedData['founder_msg']; ?>
</textarea>
我使用简单的MysqL_fetch_array来检索值
文本保存在数据类型文本的MysqL数据库的founder_msg字段中.
您正在使用格式插入大量空白区域.请尝试以下
方法:
<textarea name="text" rows="9"><?PHP
echo trim( $fetchedData['founder_msg'] ); // trim,following comments
?></textarea>
原文链接:https://www.f2er.com/php/137191.html