Skip to content
Advertisement

PHP Fatal error: Uncaught Error: Call to undefined function mssqli_fetch_assoc()

I have a database table called BRANDS and,
one of the records, in the table, is called BRAND

Here’s my PHP code:

JavaScript

What I get in return is the following error:

Fatal error: Uncaught Error: Call to undefined function mssqli_fetch_assoc()

Can you please tell me what am I doing wrong?

Advertisement

Answer

You have to use mysqli_fetch_assoc instead of mssqli_fetch_assoc

try this

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