Anyone know why this:
$aPrices[ $i ] = mysql_fetch_object( $hResult );
is times ( may be hundred ) slower than:
$aPrices = mysql_fetch_object( $hResult );
when it is inside a loop with 7500 turns.
It seems that mysql_fetch_object() is very fast but the assignment to the array is some kind of bottleneck.
But why??
Thanx in advance.
SaS.