mysql+php:如何按原样存储 html 字符串

发布于 2025-01-02 17:37:23 字数 635 浏览 0 评论 0原文

我需要像这样存储 s 字符串,在 mysql 中按原样存储,

member of the ruling <a href="/tets/Polish_United_Workers%27_Party" 

但在 mysql 中,%27 与 ' char 一致,

我怎样才能使 sql 保持原样的字符串?

更新

我将文本

var string = 'member of the ruling <a href="/tets/Polish_United_Workers%27_Party"'

从 javascript 发送到 php (也许问题就在这里?)

$.ajax({
url: myurl,
async:false,
data: "text="+string,
type: "POST",
success: function( data ) {....etc...

接收 js 调用的 php 文件上的 sql 查询部分

text = addslashes($_POST["text"])

i need to store s tring like this, AS IS in mysql

member of the ruling <a href="/tets/Polish_United_Workers%27_Party" 

but in mysql the %27 is concerted to ' char

how can i keep the sql respecting exactly the string as is?

UPDATE:

I send the text

var string = 'member of the ruling <a href="/tets/Polish_United_Workers%27_Party"'

from javascript to php (maybe the problem is here?)

$.ajax({
url: myurl,
async:false,
data: "text="+string,
type: "POST",
success: function( data ) {....etc...

parte of the sql query on the php file receiving the js call

text = addslashes($_POST["text"])

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

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

发布评论

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

评论(2

笙痞 2025-01-09 17:37:23

使用

data: {text:string}

替代方法并让 jquery 为您处理编码。当您将其插入数据库时​​,您可以在插入之前对其调用 mysql_real_escape_string ,这样您就不会受到 SQL 注入的攻击,并且所有内容都会正确转义,使用更多现代数据库抽象层(PDO)。

use

data: {text:string}

instead and let jquery handle the encoding for you. when you insert it to your DB you can call mysql_real_escape_string on it before inserting it so that you're not vulnerable to SQL injection and everything gets escaped properly, or use a more modern database abstraction layer (PDO).

羁绊已千年 2025-01-09 17:37:23

之前添加 escape(string)

我的错,我忽略了它,是的,解决方案是在提交到 php arrggg

my bad, i overlooked it and YEs the solution was to add escape(string) before submitting to php

arrrhggg

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