douyue3800 2019-03-28 04:03
浏览 123
已采纳

如何在HEREDOC SQL查询中使用PHP变量?

I am trying to perform a SQL query in PHP using HEREDOC form. While the single-line form works properly, the same kind of thing does not work in the HEREDOC form.

This is the HEREDOC code I am attempting to use:

$sql = <<<SQL
    SELECT *
    FROM `users`, `passwords`
    WHERE users.User_id = passwords.User_id 
    AND {$formusername} = users.User_name
    AND {$formpassword} = passwords.User_password
SQL;

The above statement returns 0 rows when I know that the values I supply through my form should yield at least 1 row. Further, I know that the issue is in the AND statements because removing them yields rows. I suspect that it's the way I am writing the variables in the statement that is causing the issue.

The below syntax works properly:

$sql = 'SELECT * FROM users, passwords WHERE users.User_id = passwords.User_id AND "'.$formusername.'" = users.User_name AND "'.$formpassword.'" = passwords.User_password';

1 row is correctly returned for the values I supply through the HTML5 form.

What is wrong with my HEREDOC syntax?

Edit: I know that I should use prepared statements to avoid SQL injection. This is just a small example for class and I need the HEREDOC form to work.

  • 写回答

1条回答 默认 最新

  • dongtan5558 2019-03-28 04:31
    关注

    Try this:

    $sql = <<<SQL
        SELECT *
        FROM `users`, `passwords`
        WHERE users.User_id = passwords.User_id 
        AND "{$formusername}" = users.User_name
        AND "{$formpassword}" = passwords.User_password
    SQL;
    

    The issue is the missing quotes(") in the variables, like just {$formusername} instead of "{$formusername}". Hope that fixes the issue.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)