How to pass ampersand to phpBB from HTML -


i need access topic in phpbb:

http://forum.cadec-online.com/viewtopic.php?f=3&t=235 

from html. if put in html:

<a href="http://forum.cadec-online.com/viewtopic.php?f=3&amp;t=235">text</a> 

...then, phpbbb not understands it.

here live page:

http://help.cadec-online.com/usermanualen/sect0012.html 

instead of

<a href="http://forum.cadec-online.com/viewtopic.php?f=3&amp;t=235">text</a> 

you need have

<a href="http://forum.cadec-online.com/viewtopic.php?f=3&t=235">text</a> 

you use entity (&amp;) if want pass ampersand only, not case (value of f not 3& 3).


Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -