formatting highlighter search results
I've created a search functionality on my site and what it does now is highlights the words that the person has searched for. i followed the following example:http://forums.adobe.com/message/735391#735391
The problem is that it just list everything out. I want to be able to put things in a table. Here's the code:
<head>
<style type="text/css">.highlight{background-color:yellow;}</style>
</head>
<cfloop query="query1">
<cfoutput>
<CFSET TheOutput = "#Title# / #Description# / #Bug_WorkAround#">
#ReplaceNoCase("#TheOutput#","#form.keyword#","<span class=highlight>#form.keyword#</span>","ALL")#<br>
