When inserting a text in the database wich contains the character & it is inserted as &
This is a problem when someone is trying to search for a text which contains the character &... It's not found.
How can i solve this?
Thanks for the help!
This is a problem when someone is trying to search for a text which contains the character &... It's not found.
How can i solve this?
Thanks for the help!
Re: & character
(like "welcome to our site")?
the html will show as
<p>welcome to <strong>our</strong> site</p>
The best way around this (from what I can find) is to store your content in 1 column, then store a strip_tags, plain version in another column, and use the other column to search.