First PHP-Code:
// prepare placeholder %brand1% and %brand2%
replace('%brand1%', 'FR01_01', 'response');
replace('%brand2%', 'FR01_02', 'response');
// following questions can now use the placeholder %brand%
2nd PHP-Code:
// read participant's answer
$brand1 = value('FR01_01');
$brand2 = value('FR01_02');
// remove blank spaces
$brand1 = trim($brand1);
$brand2 = trim($brand2);
// set up placeholder %brand1%
replace('%brand1%', $brand1);
replace('%brand2%', $brand2);
// following questions can now use the placeholder %brand1%
Error message: " For the placeholder %brand1% neither an input field prepare_input() has been created nor any content by using replace()."
What I want to add before the question: "Previously, you have answered the following: %input:brand1% as the upper bound and %input:brand2% as the lower bound." - This sentence I would like to add either in "Anweisungen" or "Vorspann zu den Items" would this be possible?
Thank you!