How to convert an array into MySQL Table?

goabivioria

New Member
What I want to do is:\[code\]$array_data = http://stackoverflow.com/questions/3787829/array("a" => array(1, 2, 3), "b" => array( 1, 2, 3 ) );$table_converted = CONVERT_TO_MYSQL_TABLE( $array_data );while ($row = mysql_fetch_assoc( $table_converted )) { echo $row['a'] . " union " . $row['b'];}\[/code\]Thanks!
 
Back
Top