Jump to content

[SOLVED] array help


dennismonsewicz

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.