replace \w with [^&]* and you might actually have something there. – Mike AxiakOct 26 '10 at 23:53
Brilliant replace is what I need here :D lol I don't know how could I miss it... – AdamOct 26 '10 at 23:59
heh, i didn't mean [^&]*, I meant [^/]* so that if someone did one+two in one parameter it would be allowed. – Mike AxiakOct 27 '10 at 0:03
@Mike in this way you are allowing all other characters like #&? which are not ok and should be escaped. – LuchoOct 27 '10 at 0:19
yes and how would you escape them? Typically with a % which is what you need to allow. I think the safest replacement for \w* is probably [^/&#]*, which allows for using /, or the standard # and & separators. – Mike AxiakOct 27 '10 at 1:37