This format will apply the KT_escapeAttribute on the selected field. This function will replace all special characters (double quotes, the less then and greater then signs - " , > and <) with their corresponding HTML codes, in order to avoid breaking the page code. This will also make sure that no code can be entered in a field, and ran when displayed.
When applied on a field, it becomes a parameter for the function, and the result is the function output.
For the PHP server model, the code is like the following: KT_escapeAttribute($row_rsRecordset['name_emp']).
For the ColdFusion server model, the code is: #Request.KT_escapeAttribute(rsRecordset.name_emp)#
For ASPVBScript, the code is: KT_escapeAttribute((rsRecordset.Fields.Item("name_emp").Value))