Is there a better, more “Standard” way to perform SQL queries in PHP without using a framework?

前端 未结 8 989
借酒劲吻你
借酒劲吻你 2021-01-27 09:02

For the longest time, I\'ve been using the following basic formatting for SQL queries within my PHP:

$sql = \"SELECT * FROM `user-data` WHERE `id` = \'\".$id.\"\         


        
8条回答
  •  爱一瞬间的悲伤
    2021-01-27 09:24

    Maybe it would make you a little happier at least to use PHP's string variable substitution:

    $sql = "SELECT * FROM `user-data` WHERE `id` = '$id' LIMIT 1;";
    

提交回复
热议问题