I've got an array in the following format:
Array ( [Jan-1999] => 36.04,140.35,319.53,324.07 [Feb-1999] =>
1.78,71.78,320.58,141.97 )

I need it in the following format:
$example_data = array(
    array("Feb-1999",1.78,71.78,320.58,141.97),
    array("Jan-1999",36.04,140.35,319.53,324.07)
);

I'm such an idiot when it comes to arrays that I can't figure this out.  How
do I do it?
Thanks.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to