为什么我在这个PHP代码中得到一个解析错误?

时间:2012-05-27 02:33:43

标签: php

这是我的错误:

  

解析错误:语法错误,意外T_ENCAPSED_AND_WHITESPACE,在第19行的/home/socia125/public_html/poke.php中期待T_STRING或T_VARIABLE或T_NUM_STRING

这是我的代码的第19行:

$sql="INSERT INTO feed (user_id, feed_text, time) VALUES($user,'You'.mysql_real_escape_string($_POST['kiss_option']).'yourself',UNIX_TIMESTAMP())";

为什么我收到此错误?

1 个答案:

答案 0 :(得分:5)

$sql = "INSERT INTO feed (user_id, feed_text, time)
        VALUES($user, 'You ".mysql_real_escape_string($_POST['kiss_option'])." yourself', UNIX_TIMESTAMP())";