MYSQLIASSOC
Mysqli_fetch_assoc is a function in the MySQLi extension for PHP that is used to retrieve one row of data from a MySQL database result set as an associative array. When you execute a query using MySQLi and get a result, you can iterate through the rows of that result using this function.
Each row is returned as an array where the keys are the column names of the table
The function returns null when there are no more rows to fetch from the result set. This
---