Hi all,
I am trying to use the database for contents feature with PHP code so that I can re-implement answers given by participants.
I currently have the following PHP code as a section on the same questionnaire's page as the "free mentions" question:
$mon = array(
value('CA03x01'),
value('CA03x02'),
value('CA03x03'),
value('CA03x04'),
value('CA03x05')
);
$key = 'CA03-'.caseSerial();
dbSet($key, $mon);
When I test this with the test function on the compose questionnaire page, it creates the database, but doesn't save the text that I input. Furthermore, it also does not save a .caseSerial()
.
What am I doing wrong,
Thank you