SyntaxFix
Write A Post
Hire A Developer
Questions
Before using the $result variable, you should use $row = mysqli_fetch_array($result) or mysqli_fetch_assoc() functions.
$result
$row = mysqli_fetch_array($result)
mysqli_fetch_assoc()
Like this:
$row = mysqli_fetch_array($result);
and use the $row array as you need.
$row