I'm not totally familiar with mySql, but if I remember correctly, you can
get each row (one at a time) back as an (1D) array. All you need to do is
append that array onto the end of your dataset array and, bob's your uncle,
you have a 2D array full with your dataset

HTH
Martin

-----Original Message-----
From: Christian Ista [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 12, 2002 4:56 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Query result to an array


>   array(
>       array( $temp[0], $temp[1] ),
>       array( $temp[1], $temp[2] )
>   )

I thinks it's not the right way.

I have a query, this query can return 1,5,20, 200, ... rows, each row has 
5 fields (or more or less).

I'd like a 2 dimensions array, one line by row and each cell is a field 
content of the query.

I program in a lot of language C/C++, Java, Delphi, C++Builder, 
ColdFusion, C# and I don't undersand why the PHP syntax for this kind of 
think is so complex and not clear.

Bye


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

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

Reply via email to