0

当我尝试在 facebook 上发布http://www.247limosales.com作为评论时,我收到以下消息:

http://247limosales.com/ :语法错误,意外的 T_STRING,期待 ',' 或 ';' 在第 462 行的 /home/content/e/c/o/ecommphppro/html/247limosales/listings.php

我检查了我的 PHP 代码,它很好,我在实际网站本身上也没有问题,它可以正确生成 HTML,我不明白为什么 facebook 会给出这个错误。即使我去网站上的“查看代码”,我也看不到像上面那样的错误

这是第 462 行的代码:

// See if we have a unique hit      
$hitquery = mysql_query("SELECT * FROM listinghits WHERE hitip='" . $_SERVER["REMOTE_ADDR"] . "' AND adid='" . $adid . "' LIMIT 1");

  if (!$hitquery)

  { echo mysql_error(); }
  if (mysql_num_rows($hitquery)==0)
  {
    $hitquery = mysql_query("INSERT INTO listinghits (hitid, date, hitip, adid) VALUES ('', CURDATE(), '" . $_SERVER["REMOTE_ADDR"] . "', '" . $adid . "')");
    if (!$hitquery)
    { echo mysql_error(); }
  }

最后一行是第 62 行

谢谢

4

1 回答 1

0

它将是您的 adid 字符串中的 ' 或 " (使用 mysql_real_escape_string($adid) 或正在发生的是 $_SERVER[REMOTE_ADDR] 中的句点被视为连接,因此它变为:

select * from table where htip='".128.10.50.125."'" and it is breaking the string as it is expecting a ' or ".

尝试:

select * from table where htip='".{$_SERVER[REMOTE_ADDR]}."'
于 2012-06-28T22:10:30.690 回答