12-17-2007, 05:06 PM
|
#2 (permalink)
|
|
The Contributor
Join Date: Dec 2007
Posts: 60
Thanks: 5
|
You don't need to manually iterate over the array, just use []
PHP Code:
while( $thread = mysql_fetch_array( $query ) ) { $this->threads_details[] = $thread; }
|
|
|
|