Hi,
though I do not understand this
to identify them separately in the database?
generally you can add as many parameters as you like.
But browsers limit the amount. (between 2kB in Microsoft browsers and 64kB in Firefox and Safari)
You see here a usual link to a survey:
Code:
https://www.myServer.de/limesurvey/index.php/123456?lang=de&newtest=Y
There are added two parameters.
The first parameter is "lang" which has the value "de".
The second parameter is "newtest" which has the value "Y".
You see: This parameter list starts with a question mark.
And additional parameters are joined by an ampersand
Now you may add more parameters like
?lang=de&newtest=Y&firstname=John&ID=ABC123XYZ&A1=B2&flag=111
Always the syntax: "name=value"
Here:
name: lang, value: de
name: newtest, value: Y
name: firstname, value: John
name: ID, value: ABC123XYZ
name: A1, value: B2
name: flag, value: 111
And working with a panelist you have to return the given ID in the end-url.
Coming back to
to identify them separately in the database?
Using Panel integration you usually use a question of type "short text" to capture the added parameter.
As any question this is stored in the database.
Do it by yourself.
Create a small survey with two questions of type "short text".
In panel intergation assign two parameters to these two questions.
Activate the survey.
Run it several times by adding your two parameters to the link,
like
Code:
https://www.myServer.de/limesurvey/index.php/123456?lang=de&newtest=Y&Param1=My first Parameter&Param2=My second parameter
Joffm