Hello,
I have successfully embedded the survey into my website; however, I was looking at the SurveyJS Service API, and other things, and I'm confused as to how I can save the results of my survey, as the patient hits next page, into mySQL. My database is operated under my university and I was given an account to access it. I was thinking maybe the easiest way to do this would be to return a JSON string and then parse the questions?
Hello Anudeeta,
SurveyJS is a client-side JavaScript library. To store survey results you need to implement a server-side API. This is described in this article - Integrate the Entire Survey Life-cycle into Your Web Application
Yes, the easiest way to store survey results is to create a JSON string and save in in the database.
Thanks, Serge
SurveyJS Team