插入特殊字符、标题分隔符

发布于 2024-11-28 19:22:06 字数 463 浏览 0 评论 0原文

我将这样做,将网页标题 </code> 存储在数据库中,因此您可以在不编辑文件的情况下更改它..

我既有标题又有标题分割器..

像这样

page.com • 

: page.com 是标题,• 是拆分器

。通过将拆分器• 插入数据库,我几乎没有遇到任何问题。我尝试按原样插入它, • 并通过html 代码

第一次尝试有• 结果是?在我的 varchar 字段中, 第二次尝试使用 &bull; 是在网页标题中它也显示为 &bull; 而不是实际的图标/符号。

我该如何解决这个问题并让它接受字符,这样它们就不会变成这样?或者 ??

我应该使用除 varchar 以外的其他列类型吗?

I am going to do so the webtitle <title> is stored in the db, so you can change it without editing file..

I have both the title and a title splitter..

Like this:

page.com • 

the page.com is the title and the • is the splitter

Im having little issue by inserting the splitter, • into the database. I tried insert it as it is, • and by the html code .

The first try by having • is that it turns out as ? in my varchar field,
Second try by having is that in the webtitle it shows also as and not the actual icon/symbol.

How can i fix this and have it accept chars so they dont turn out as ? or ??

Should i use another columntype than varchar maybe?

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

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

发布评论

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

评论(4

北城半夏 2024-12-05 19:22:06

首先, title 不允许 html-entities

恕我直言,你应该存储作为
并且仅在输出 HTML 时将其操作/转换为其原始字符

first, title does not allow html-entities

imho, you should store as
and only manipulate/convert that into its original character when you outputing HTML

溺渁∝ 2024-12-05 19:22:06

实际上应该可以解决问题。
查看加载到浏览器的最终 html 代码。
可能有一些转义字符

should actually do the trick.
look at your final html code that loaded to the browser.
may be there are some escaping characters

牵强ㄟ 2024-12-05 19:22:06

这正是您应该存储它的方式。我不确定为什么您的浏览器不显示它。我刚刚用 Mozilla 进行了测试,它对我来说工作得很好。

<title>• <- thats a bullet</title>

That is exactly the way you should store it. I'm not sure why your browser is not displaying it. I just tested with Mozilla and it work's fine for me.

<title>• <- thats a bullet</title>
离鸿 2024-12-05 19:22:06

Varchar 应该没问题。 。 。

当您发送数据或从数据库收集数据时,您是否通过诸如 htmlspecialchars() 之类的方式发送数据?确保您实际发送的是字符串,而不是字符串的剥离版本。

Varchar should be fine. . .

When you send your data, or gather it from your DB, are you sending it through anything like htmlspecialchars() ? Make sure you're actually sending the string, and not a stripped version of the string.

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