解決済み
Output query with HTML delimiters. Remove at end of loop
I have <cfoutput query="rsgenre"> #rsgenre.genre# / </cfoutput>
which gives me:
crime / mystery / comedy /
How can i drop the character at the end to get:
crime / mystery / comedy
I have <cfoutput query="rsgenre"> #rsgenre.genre# / </cfoutput>
which gives me:
crime / mystery / comedy /
How can i drop the character at the end to get:
crime / mystery / comedy
One method.
<cfoutput query="rsgenre"> #rsgenre.genre# <cfif rsgenre.currentRow NEQ rsgenre.recordCount>/</cfif> </cfoutput>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.