我想在我的数据库中存储一些文本,其中包含几个段落和几个超链接。
例如,代码将如下所示:
<p>Welcome to the show. </p>
<p>Here you will find these things: </p>
<ol>
<li>Thing one</li>
<li>Thing Two</li>
</ol>
<p>Visit us at <a href="www.google.com">Google.com</a> if you have any questions.
基本上我想将此代码块存储在一个表中,然后当我检索它时能够回显它并保留格式。我该怎么做呢?我的表设置为 TEXT 字段条目。