On 04.12.2021 at 11:56, gordonisnz@xxxxxxxxx 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
On 04.12.2021 at 11:56, gordonisnz@xxxxxxxxx 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