html How to put double quotes in a url with query

0

To understand if I look for two words on my website, the url is like this:

  

/phpbb_topic_tagging.php?mode=search&tag= "Word1 + Word2"

I want to put static links of pre-established searches, but I do not find it when putting double quotes, nor single quotes with \

<a href="/phpbb_topic_tagging.php?mode=search&tag="Palabra1+Palabra2"">Palabra1 Palabra2</a>

If I do not use quotes, the search engine does not work correctly since it stops looking for the two words together.

Any ideas?

Thanks

P.D: it has to be in html

    
asked by Retro1191 29.12.2017 в 05:41
source

1 answer

1

Using &quot; you should not have problems.

<a href="/phpbb_topic_tagging.php
mode=search&tag=&quot;Palabra1+Palabra2&quot;">Palabra1 Palabra2</a>

Greetings

    
answered by 29.12.2017 в 06:55