Hallo,
ich habe einen Link im Javascript Teil
-- parent.frames[1].location.href = "test.pl?pfad=@pfad_netm"; --
Das ist schon nicht besonders klug, du musst einige Zeichen in einer URL decodieren.
und möchte da nun noch die sich ständig ändernde Javascript Variable
-- var index -- (besteht aus Zahlen) ranhängen.
var param = escape('pfad=@pfad_netm' + '&' + index);
parent.frames[1].location.href = "test.pl?" + param;
Struppi.