douguachan2879 2017-06-29 21:40
浏览 77
已采纳

too long

Hello everyone

I bring forth the following issue: My php code skips the first mysql row when printing it onto the screen. I have already seen that the issue is solved by removing a double fetch() method outside the while() loop on other questions, but I fail to see that happening here, so what else could it be? Im lost.

This is the code:

<?php
$servername = "localhost";
$username = "root";
$password = "standup";
$database = "sakila";
$conn = new mysqli($servername, $username, $password, $database);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully<br><br>";
$query = "select * from actor;";
$queryResult = $conn->query($query);
while($queryRow = $queryResult->fetch_row()){
    echo "$queryRow[1]<br>";
}
$conn->close();
?>

This is the original database:

Mysql

And this is the result in a browser

Browser

  • 写回答

1条回答 默认 最新

  • dongxi0605 2017-06-30 16:56
    关注

    Answer provided by @rtfm in the comments

    Solution 1

    Add order by to the query, in this situation $query = "select * from actor order by actor_id;"; solved the issue of skipping the first row.

    Solution 2

    Add limit to the query, in this situation $query = "select * from actor limit 100;"; solved the issue of skipping the first row also.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了
  • ¥100 H5网页如何调用微信扫一扫功能?