What do you mean with "connect" exactly?
From what I understand, you want to have two surveys and once the first survey is completed, you want the respondent to be redirected to the next survey, correct?
And you want to pass on the token to the next survey?
Here is what I would do:
- Create the two token tables igually (so there must be the same tokens created for both surveys).
- At the end of the first survey you will use the end URL feature, with the basically the URL that you would use with tokens for the second URL.
- You can pass through the token to the end URL (
www.limesurvey.org/manual/URL_fields#Pas...rvey_2.x_or_later.29
)
- Subsitute in the end url the field where the token would be with {TOKEN}, this should pass on the token used in survey one to the url of survey 2 and thus the token should be the same for both surveys, which means you can identify the respondent via the token and match the responses.
Is this what you are looking for?