CodeIgniter Forums
Disallowed URL characters allowed after hash sign - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Disallowed URL characters allowed after hash sign (/showthread.php?tid=43623)



Disallowed URL characters allowed after hash sign - El Forum - 07-18-2011

[eluser]cyberjunkie[/eluser]
I noticed that I don't get a warning message for disallowed characters after a hash # sign.

Example:

Quote:http://www.mysite.com/controller/function/212#''""

Is this normal?


Disallowed URL characters allowed after hash sign - El Forum - 07-19-2011

[eluser]TheBaron[/eluser]
Yes, what comes after the hash sign isn't processed by codeigniter. Instead this is used by browsers to navigate to a specific part of the page.


Disallowed URL characters allowed after hash sign - El Forum - 07-19-2011

[eluser]cyberjunkie[/eluser]
Thanks!