I am passing ampersands in a URL which go into a get request
e.g.
http://www.soundshelter.co.uk/label/Hit & Run
I have tried to urlencode the & so that it is a valid URL
http://www.soundshelter.co.uk/label/Hit%20%26%20Run
but the & Run section of the URL is being cut off in the get request.
I'm thinking this might have something to do with my mod_rewrite
RewriteRule ^label/([^/]*)$ /index.php?label=$1 [NC]
the get request is
$label = $_GET['label'];
Any ideas?
Cheers
