• Is there a way to Uppercase ALL fields in a record?

    I mean uppercase all fields without having to go through this.. $bean->first_name = strtoupper($bean->first_name); $bean->last_name = strtoupper($bean->last_name ); $bean->address = strtoupper($bean->address ); $bean->gender = strtoupper($bean->gender…