dongshun7312 2016-10-07 09:34
浏览 160
已采纳

在textarea中显示数据库值[重复]

This question already has an answer here:

I am trying to display the value of a textarea in a form that will enable someone to edit its value. The textarea displays nothing but I checked the database and there is a 2 sentence value. Here is the code I am using:

<textarea rows="5" cols="55" name="P1Bio" value="<?=$record['P1Bio']?>">
</textarea>

P1Bio is the field. On the same form, I am also getting values from textboxes and it is working fine. Here is the code that I am using for text boxes:

<input type="text" size="90" name="P1Email" value="
<?=$record['P1Email']?>">

Can someone please tell me why the textarea is not showing anything? Thank you.

</div>
  • 写回答

4条回答 默认 最新

  • duanbichou4942 2016-10-07 09:35
    关注

    There is no value attribute with textareas.

    You need to put the content in between the open and closing tags like this:

    <textarea rows="5" cols="55" name="P1Bio"><?=$record['P1Bio']?></textarea>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部