How do i set a page to append a urlVariable into its links?
for example, i have 3 different pages and all are linked into the same page, e.g.
receiver.html
first page link:
receiver.html?sender=1
second page link:
receiver.html?sender=2
third page link:
receiver.html?sender=3
when the first page is clicked it will send the user to receiver.html which has many outgoinglinks inside, and the script will append the variable into all its outgoing links depending on the three pages above?
receiver.html
outgoinglink.html?sender=1
outgoinglink2.html?sender=1
outgoinglink3.html?sender=1
and if second page is used, the receiver.html will append
?sender=2
on all its link inside and so on and so forth..