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? Link to comment https://forums.phpfreaks.com/topic/174226-solved-array-help/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.