Hello, DanielFriedrichSchulz,
without a sample survey it's hard to a specific answer.
But generally:
To have one short parameter, you can
join the answers of your array to a string (e.G. "A1A5A3A3A2A1")
Better change your answercodes to "1,2,3,..." to have just one character per array row. ("153321").
If you do this in an equation called "parameterstring" you pass this string in the end url to the second survey like "
www.example.com/limesurvey/index.php/168...ara={parameterstring
}
In your second survey capture the parameter and split (with
substr) it again and you know the given answers.
{tool1=substr(para,0,1)}
{tool2=substr(para,1,1)}
...
See:
www.limesurvey.org/manual/Expression_Man...mplemented_Functions
Best regards
Joffm
Maybe there are better ways, but this worked for me.