Ok, I have a search engine Php interface with receive the search as the variable Q
So if someone types in "Word1 Word2 Word3" the web based form would process it into search.php?Q=word1+word2+word3
Now the problem, when the variable is outputted my search.php it comes out as "Word1" because of the + being an operator, it disregards the rest of the search words, so only 1 word will work. I simply need to find a way to make search.php recognize the variable $Q as nothing but characters, so that the +'s will be entered into the variable and outputted as the text character instead of the script parsing them as an operator.
Any help would be much obliged.