I've built a keyword search in php and now I'd like to have the keywords entered BOLDED in the results page so that people can see their keywords. Does anyone know how to do that? It's probably simple right?
you could take the whole document and make that a variable, then you use string replace to replace keyword with <b>keyword</b> in that variable and then echo out the variable, or something to that nature