So now, receiving a response back from the server, that information comes back as an html, so me using it with "explode"
list($descriptives, $ssLPt0, $ssLPtd, $ssPRZt0, $ssPRZtd, $ssSPt0, $ssSPtd, $llLPt0, $llLPtd, $llPRZt0, $llPRZtd, $llSPt0, $llSPtd) = explode(";", $answer);
gives me the error:
"Questionnaire Error: explode() expects parameter 2 to be string, array given"
Is there a way to deal with an incoming html, by chance?
Thank you!