Hello,
I am currently having an issue where MySQL is only displaying 1 of my 3 rows in a dynamic Temporary Table ive created in a PHP page. I can confirm how many rows the TmpTable has via:
$numrows = mysqli_num_rows($doResults);
// returns 3
But when I do my while($rows=mysqli_fetch_array($doResults)){ }
Only 1 of the 3 rows are returned/displayed. ( The one row is returned correctly with all fields requested )
Has anyone had any issues with some sort of Caching, etc ... ?
-L