小编典典

插入MySQL时在PHP中转义单引号

all

我有一个令人困惑的问题,我似乎无法理解......

我有两个 SQL 语句:

  • 第一个将信息从表单输入到数据库中。
  • 第二个从上面输入的数据库中获取数据,发送电子邮件,然后记录交易的详细信息

问题是单引号似乎仅在第二个条目上触发 MySQL 错误!第一个实例可以正常工作,但第二个实例会触发mysql_error().

表单中的数据与表单中捕获的数据的处理方式是否不同?

查询 1 - 这没有问题(并且没有转义单引号)

$result = mysql_query("INSERT INTO job_log
(order_id, supplier_id, category_id, service_id, qty_ordered, customer_id, user_id, salesperson_ref, booking_ref, booking_name, address, suburb, postcode, state_id, region_id, email, phone, phone2, mobile, delivery_date, stock_taken, special_instructions, cost_price, cost_price_gst, sell_price, sell_price_gst, ext_sell_price, retail_customer, created, modified, log_status_id)
VALUES
('$order_id', '$supplier_id', '$category_id', '{$value['id']}', '{$value['qty']}', '$customer_id', '$user_id', '$salesperson_ref', '$booking_ref', '$booking_name', '$address', '$suburb', '$postcode', '$state_id', '$region_id', '$email', '$phone', '$phone2', '$mobile', STR_TO_DATE('$delivery_date', '%d/%m/%Y'), '$stock_taken', '$special_instructions', '$cost_price', '$cost_price_gst', '$sell_price', '$sell_price_gst', '$ext_sell_price', '$retail_customer', '".date('Y-m-d H:i:s', time())."', '".date('Y-m-d H:i:s', time())."', '1')");

查询 2 - 输入带有单引号的名称时失败(例如, O’Brien

$query = mysql_query("INSERT INTO message_log
(order_id, timestamp, message_type, email_from, supplier_id, primary_contact, secondary_contact, subject, message_content, status)
VALUES
('$order_id', '".date('Y-m-d H:i:s', time())."', '$email', '$from', '$row->supplier_id', '$row->primary_email' ,'$row->secondary_email', '$subject', '$message_content', '1')");

阅读 69

收藏
2022-06-14

共1个答案

小编典典

您应该使用 . 转义每个字符串(在两个片段中)mysql_real_escape_string()

http://us3.php.net/mysql-real-escape-string

您的两个查询行为不同的原因可能是因为您已magic_quotes_gpc打开(您应该知道这是一个坏主意)。这意味着从 $_GET、$_POST 和
$_COOKIES 收集的字符串会为您转义(即"O'Brien" -> "O\'Brien")。

一旦您存储了数据并随后再次检索它,您从数据库中返回的字符串将 不会
自动为您转义。你会回来"O'Brien"的。所以,你需要通过它mysql_real_escape_string()

2022-06-14