> Is there a way to access a column in Mysql just by using a number?

Please refer to the MySQL-Documentation. A database doesn't have
any predefined structure, so you're responsible for doing this. Can you
explain why you need this "feature"?

> Like if you had three columns called "column1", "column2", and
> "column3" and I wanted to access column3 just by using the number 3

This could simply be done by using prefixes:

$col = $prefix.$number

Jens



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

Reply via email to