I'm executing following simple sql query: \[code\]SELECT people_picture, people_gender FROM people LIMIT 1\[/code\] which in phpmyadmin gives a result.My php code is the following: \[code\] $query = "SELECT people_picture, people_gender FROM people LIMIT 1"; $result = mysqli_query($con,$query); $row = mysql_fetch_assoc($result); $row1 = mysql_fetch_array($result); print_r($row1); print_r($row);\[/code\]It doesn't give an error, but it just doesn't do anything.