This function doesn't work for me following the
API, but I solve partially my problem using this:

$tablelist=odbc_result_all(odbc_tables($conn));

instead of :

$tablelist=odbc_tables($conn);
$tablelist=odbc_result_all($tablelist);

but I need to put the table names in a <select>
field; so I need to get only the field
TABLE_NAME. can somebody tell me how can I
extract this field only?.

I tried with 

$tablelist=odbc_result(odbc_tables($conn),"TABLE_NAME");

but it doesn't work because I get only the first
row and nothing else.

Thanks and best regards.

Sorry for my english, I hope you understand.

Nicolas Gomez

_________________________________________________________
Do You Yahoo!?
Información de Estados Unidos y América Latina, en Yahoo! Noticias.
Visítanos en http://noticias.espanol.yahoo.com

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

Reply via email to