且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

PHP查询不会在html表中显示所有结果

更新时间:2022-12-02 22:37:45

Remove line $row = mysql_fetch_array($result);

Because this line starts to fetching records from your query results. First fetched record is record with id 1 and you do nothing with it.

Then you start echoing other records, but record with id 1 is already skipped.

相关阅读

技术问答最新文章