dennismonsewicz Posted September 14, 2009 Share Posted September 14, 2009 I have this code: while($results = mysql_fetch_assoc($structure)) { echo '<td>'; echo $results['Field']; echo '</td>'; $explode_array .= array($results['Field'] . ","); } when I do a print_r() on $explode_array it is only displaying the last result in $results['Field'], how would I get ALL results to dump into my array? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.