tags:

views:

19

answers:

1

For example:

http://www.mywebsite.com/redirect?data1=100&data2=200&data3=300">

Flash interprets the clicktag URL as: "http://www.mywebsite.com/redirect?data1=100"

How do you work around this?

Thanks.

A: 

Try rewriting the url using htmlentities, otherwise the browser will interpret each "&" as the beggining of a different parameter:

http://www.mywebsite.com/redirect?data1=100&data2=200&data3=300
danii