Formatting a cfoutput
Hi,
I need have list of contacts that if there are more than 1 contacts the result should look like this:
name, phone, email; name, phone, email; name, phone, email.
The last contact ending in a " . " rather than a ";". I'm using a simple cfoutput to output the data. Is there any way this could be done?
<cfoutput query = "myquery">
#name#, #phone#, #mail# ;
</cfoutput>
