如何在MySQL数据库文本字段中创建粗体数据?

发布于 2024-08-17 21:18:34 字数 78 浏览 4 评论 0原文

是否可以在 MySQL 数据库文本表字段中创建粗体文本?

我们正在将文章放入数据库中,我想创建粗体标题和副标题。这可能吗?谢谢

Is it possible to create bold text in a MySQL database text table field?

We are putting our articles in our database and I want to create bold titles and subtitles. Is this possible? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

最美的太阳 2024-08-24 21:18:34

Markdown

我建议您使用 markdown 样式格式(PHP/.NET),这意味着粗体文本将像这样存储:

**I am bold**

存储 HTML

如果您不能使用 markdown在你的项目中,你也可以存储 HTML - 我会非常小心你存储的标签。您不希望有人在您的数据库中发布

<strong>I am bold</strong>

后期样式化

或使用 titlesubtitle< 中的所有值/code> 字段在您的页面上打印时以粗体显示:

<strong><?php print $row->title; ?></strong>

Markdown

I would advise you to use a markdown-style formatting (PHP/.NET), which would mean bold-text would be stored like this:

**I am bold**

Storing HTML

If you can't use markdown on your project, you can store HTML as well - I would just be very careful about what tags you store. You wouldn't want somebody posting <script/> tags in your database for instance:

<strong>I am bold</strong>

Late-Styling

Or make all values from the title and subtitle fields bold when you print them on your page:

<strong><?php print $row->title; ?></strong>
莳間冲淡了誓言ζ 2024-08-24 21:18:34

从数据库获取字段后应进行粗体显示。字段的显示应加粗。

the bolding should be done after getting the fields from the database. the display of the fields should bold it.

浸婚纱 2024-08-24 21:18:34

您可以使用某种标记添加样式信息。如果您在 Web 应用程序中使用数据,显而易见的选择是使用 HTML 标记。

You can add styling information with some sort of markup. If you're using the data in a web application the obvious choice is to use HTML markup.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文