2
I have an external search site ready where the search results generate a link similar to this: http://example.com/pesquisa?utf8=✓&search=itempesquisado&x=0&y=0
.
I would like to create a form on my site that leads to this external link, ie when the user type itempesquisado
in the field and click submit should be directed to the page: http://example.com/pesquisa?utf8=✓&search=itempesquisado&x=0&y=0
.
Try to put more details in your question, for example the html code of your form.
– Savrige
The problem is that if the source code is in a different server encoding, and/or the user uses a browser with another encoding when filling the form, it won’t do much to know how the . Better examine the headers and clarify in the parameters if you are using this data for encoding detection, and use entities ( utf8="ç" in the source code, for example. )
– Bacco