I am trying to add a user-defined string to the information passed to a third party via href. So I have something that will look like
<a href="http://thirdparty.com/?data_set=USERSTRING" target="_blank">Link Text</a>
USERSTRING is known when the page loads, so it can be placed in href by php when the page loads, or I can add it dynamically using javascript.
I donβt know what I need to do to avoid any special characters so that the link works and can be read on the other end. USERSTRING can be something really annoying, for example: [He said: β90% isn't good enough?]] The data is used only in the auto-generated file name, so it does not need to be saved 100%, but I try to avoid free ugliness.
Jsp64 source share