
May 27th, 2000, 07:50 AM
|
|
Apprentice Deity
|
|
Join Date: Jul 1999
Location: Niagara Falls (On the wrong side of the gorge)
Posts: 3,237

Time spent in forums: 4 m 8 sec
Reputation Power: 17
|
|
|
You'll have to use the mysql_list_fields() function as the query:
$result=mysql_list_fields("databasename","tablename");
and mysql_field_len() to get the length:
$len=mysql_field_len($result,$field_num);
where $field_num is the offset of the field you wish to retrieve.
|