The mysqli quickstart series is coming to an end. Today, the post is about non-prepared statements. You may also want to check out the following related blog posts:
- Using MySQL prepared statements with PHP mysqli
- Using MySQL multiple statements with PHP mysqli
- Using MySQL stored procedures with PHP mysqli
Using mysqli to execute statements
Statements can be executed by help of the
mysqli_query()
, mysqli_real_query()
and
mysqli_multi_query()
function. The
mysqli_query()
…