Skip to content
Advertisement

How to use mysqli_query() in PHP?

I’m coding in PHP. I have the following mySQL table:

JavaScript

I’m trying to use the mysqli_query function in PHP to DESCRIBE the table.

Here’s my code:

JavaScript

The documentation says For successful SELECT, SHOW, DESCRIBE or EXPLAIN queries mysqli_query() will return a mysqli_result object.

But from there I don’t know how to print $result so that it shows the query results. If possible I want to print $result so that it looks like:

JavaScript

My other question is how to print the query SHOW CREATE TABLE students.

JavaScript

Advertisement

Answer

I have to admit, mysqli_query() manual entry doesn’t contain a clean example on how to fetch multiple rows. May be it’s because the routine is so routine, known to PHP folks for decades:

JavaScript

In case you want to print the column titles, you have to select your data into a nested array first and then use keys of the first row:

JavaScript

Some hosts may have no support for the fetch_all() function. In such a case, fill the $data array the usual way:

JavaScript

Two important notes I have to add.

  1. You have to configure mysqli to throw errors automatically instead of checking them for each mysqli statement manually. To do so, add this line before mysqli_connect():

    JavaScript
  2. The most important note: unlike mysql_query(), mysqli_query() has a very limited use. You may use this function only if no variables are going to be used in the query. If any PHP variable is going to be used, you should never use mysqli_query(), but always stick to prepared statements, like this:

    JavaScript

It’s a bit wordy, I have to admit. In order to reduce the amount of code you can either use PDO or adopt a simple helper function to do all the prepare/bind/execute business inside:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement