I am trying to send the output of a mysql query to a two dimensional array.

This is what I've tried using push.

while (@results = $sth->fetchrow_array ())
{
    $x = $results[0];
    $y = $results[1];
    push (@data,[$x],[$y]);
}

However, I don't get back a two dimensional array, I get back a single
array of @data.

Thanks. -Aaron

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to