Here is the code I\'m using to pull the data from the table:
require_once \'connect.php\'; $sql = "SELECT * FROM `db-news`"; $result = $mysqli->query
mysqli not ignoring it but actually you are fetching first row before while loop // $row = mysqli_fetch_assoc($result); //remove this line while ($row = $result->fetch_assoc()) { .... }