well according to zend the mysql_field_len is used in a different manner than the way you are using it.
int mysql_field_len (resource result, int field_offset)
so to use it correctly, i think, you would do it like this:
mysql_field_len($getInfo,$getInfo["first_name"])
i am not sure if the is the right way to do it because the resource result is $getInfo but the offset might be the MYSQL_NUMS value/number reference to the $getInfo array.