On Fri, 25 Feb 2005, Richard Neill wrote: > I read your page on Ampersands in URLs, and duly arranged all my > URLs to be like this: > > <a href="http://www.example.com/index.php?foo=bar&baz=wombat"> link</a> > > So far, so good. BUT, if one does the same thing with HTTP headers, eg > this fragment of PHP: > > > $redirect_location='http://www.example.com/index.php?foo=bar&baz=wombat'; > header("Location: $redirect_location"); > > then it will fail. It is necessary (tested in both Konqueror and > Mozilla) to use '&' , NOT '&' in this case. Otherwise, the '&' > is not evaluated, and the index.php script does not get to know the > value of baz. "&" should be escaped as "&" in HTML where "&" has a special meaning (as the start of an entity or character reference). HTTP headers are not HTML, and "&" does not have a special meaning in HTTP headers. -- Liam QuinnReceived on Friday, 25 February 2005 03:16:47 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Thursday, 1 October 2009 14:48:55 GMT