header ("Location: pladd.php?err=2#etype");
Seems # (anchor) is treated as a comment losing the remining part of the querystring, even delimited with . Is there a way round this ?
cheers IA
simon
If you want to put special symbols in a query string you have to use it: $string=rawurlencode($string); in order to escape all special chars.
Good Luck. SaS.
Just a guess if SaS's comment doesn't work: use hard quotes (') instead of soft quotes (") around your string.
So did you ever get this to work?
I too have hit the same problem and tried both the suggestions here to no avail.