0
i want to write a program to read the database, but i get an error like in the description. thank you
help me please, i'm just learning php "Fatal error: Uncaught TypeError: mysqli_error(): Argument #1 ($mysql) must be of type mysqli, string given in C:\xampp\htdocs\New folder\Meet 3\read.php:6 Stack trace: #0 C:\xampp\htdocs\New folder\Meet 3\read.php(6): mysqli_error('SELECT * FROM b...') #1 {main} thrown in C:\xampp\htdocs\New folder\Meet 3\read.php on line 6" https://code.sololearn.com/w314Srjt7yI3/?ref=app
2 ответов
+ 1
mysqli_error() requires a `mysqli` object as an argument, so it should be like this
mysqli_error( $conn )
You had instead passed the query <$ql> (a string) as argument there, that's why you got that error message.
+ 1
thanks bro