While Loop only returns one row from 9000+ records

前端 未结 4 1511
南笙
南笙 2021-01-29 06:05

I had a script for this that worked great in PHP 5.3. New host only supports 5.5 so I\'ve done some modifying. So far, I can only get one row to be returned. I\'ve been agonisin

4条回答
  •  感情败类
    2021-01-29 07:02

    Your while loop keeps overwriting the same array elements in the $row_array array.

    To do what you're trying to do: while($row = mysqli_fetch_assoc($result)) { $row_array[] = $row; }

提交回复
热议问题