If the questions are static, then you could simply hardcode/copy them in as variables in the handler script, concatenate a Q-A string, and commit it do the db.
If the questions are dynamic, they need to be passed to the handler by the "asking script"; there are a number of ways this could be done. <input type="hidden"> is one. Another would be to pass the question number (I assume the questions are in a db?) to the handler and have it pull the question from the db again, then contcatenate your QA and write to db.
And there are other options as well. Quite possibly the simple HTML hidden input idea would be best.