Re: With MYSQLI, Check which database im connected to

[email protected] ("Christoph M. Becker")
Newsgroups php.general
Message-ID <[email protected]>
On 04.12.2021 at 11:56, [email protected] wrote:

> FIXED: I had the $link, $sql in the wrong order.
>
> $result = mysqli_query($sql,$link) << wrong.

Consider to use OOP style:

   $result = $link->query($sql);

--
Christoph M. Becker
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.