Hi.
I'm trying to append a URL using dbr.url and when I add the parameters it also adds the '?' to the first parameter and '&' to subsequent ones despite these not being needed. Anyway to suppress these?
It looks like this:
SELECT 'dbr.url', 'http://myurl.com', '', 1, '/fixed1/=1', '/fixed2/=2', '/fixed3/=3', '/fixed4/=4', 'new_window';
and should produce an url that looks like
http://myurl.com/fixed1/12/fixed2/34/fixed3/56/fixed4/78
(both dummy urls obviously)
Instead what I get is
http://myurl.com?/fixed1/12&/fixed2/34&/fixed3/56&/fixed4/78