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

前端 未结 8 977
借酒劲吻你
借酒劲吻你 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:41

    PDO is a good, solid, secure solution that many frameworks build off of. If you're going to start from the bottom, PDO is a solid foundation.

提交回复
热议问题