"Matt Babineau" <[EMAIL PROTECTED]> wrote in message 002c01c29f20$cf908500$1a10a8c0@webdevx">news:002c01c29f20$cf908500$1a10a8c0@webdevx... > How can I access a mysql result array numerically? > > Like: > > $result[0][0]; > $result[1][0]; > > I want to be able to access one whole column at a time. > > Any ideas?
Directly, you can only access one record at a time. If you need to do some sort of random-access manipulation, you'll have to read all the results into an array, then play with them from there. What are you trying to accomplish? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php