Thanks for the response first!
I have 3 questions related to your answer:
1. As for the "HTML code as questionnaire contents", do you refer to the following HTML code?
<a href="
https://www.soscisurvey.de/">SoSci Survey Homepage</a>
In my case, I would like the site to be shown directly without needing to click it.
2. In my case, 16 different pages (stimuli) are all combined with one (same) question. Should I use the block rotation here since the question should be to together with each page? Is the following PHP code the right one I should use?
// First save the page labels as array
$rotation = array(
'A' => array('A1','A2',),
'B' => array('B1','B2',),
'C' => array('C1','C2',),
'D' => array('D1','D2',),
'E' => array('E1','E2',),
);
// Mix each block individually
foreach ($rotation as $key => $pages) {
// Remove the first page from the array $pages
$first = array_shift($pages);
// Mix the rest
shuffle($pages);
// Put the two back together again
array_unshift($pages, $first);
// And save back to the $rotation array
$rotation[$key] = $pages;
}
// Now mix the order of the blocks randomly
shuffle($rotation);
// Now set the result as page sequence
// Continue with page 'Q' afterwards
setPageOrder($rotation, 'Q1');
3. In my case, the question after the stimulus is always the same, should I just copy them 16 times since I can not use the same one in the questionnaire?
Bests!