How can i change plus to minus from url query for example:
from
?search=some+words
to
?search=some-words
Because if i use + i get results only from the first word.
Is there a way to do it ?
How can i change plus to minus from url query for example: from ?search=some+words
Share
$search = rawurlencode(strip_tags(str_replace(“_”, ” “, $_GET[‘search’])));