Here are some examples of pass through query links and their resulting URLs with the query string appended.
Incoming URL to a click tracker.
http://domainname.com/tracker.php?a=ertfdgt&sid=eret&cost=.50&source=fredssolos
Incoming URL to a rotator.
http://domainname.com/rotator.php?a=ertfdgt&sid=eret&cost=.50&source=fredssolos
Now let’s take these two incoming URL examples and use the pass through query builder language to pass the incoming data out a few different ways.
This example;
http://destinationdomain.com/?%%qstringraw%%
Will produce this;
http://destinationdomain.com/?a=ertfdgt&sid=eret&cost=.50&source=fredssolos
This example;
http://destinationdomain.com/?%%qstring%%
Will produce this;
http://destinationdomain.com/?sid=eret&cost=.50&source=fredssolos
This example;
http://destinationdomain.com/?clicksource=%%special=source%%
Will produce this;
http://destinationdomain.com/?clicksource=fredssolos
This example;
http://destinationdomain.com/?clicksource=%%special=source%%&clickcost=%%special-cost%%
Will produce this;
http://destinationdomain.com/?clicksource=fredssolos&clickcost=.50