0 votes
in SoSci Survey (English) by s167617 (110 points)

Is there a possibility to create a list of images like the zoom selection and to link them in a way that depending on which image is selected on the next page a matching image with question is displayed?
So a "if image x clicked" "then show image y".

1 Answer

0 votes
by SoSci Survey (320k points)

You can use some PHP code to create such a filter. It may look like this:

$images = [
  1 => 'alpha.png',
  2 => 'beta.png',
  3 => 'gamma.png'
];
$selection = value('ZS01');
$image = $images[$selection];  // Make sure that the selection is always 1, 2 or 3
html('<img src="'.$image.'" alt="">');

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...