I have an url like index.php?c1=#reqid#&c2=#affid#&s2=#s2#&s5=#s5#
and $_GET parameter did not get nothing. please, tell me why?
1 Answer
The # character in a URL indicates the start of the fragment identifier (which is handled client side and never sent to the server).
If you want to include it as data you must encode it as %23.
2 Comments
Quentin
@jek: Depending on what is generating the URL :)
Jack Hales
Yes true true smiles again :)