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