Hi,
I'm pretty new to CSM customisation, and I was wondering how can I do the following:
I need a page that is basically a set of questions to which the users can answer. The questions can be:
- multiple choice question with only one valid answer (radio buttons)
- multiple choice question with more than one valid answer(check box)
- the user might have to input text that will constitute his answer
And then based on the answers the user will get a number of points.
I would like to start with static questions and answers, not retrieved from the db.
I have already spent some hours googleing, and I found the forms api here
http://api.drupal.org/api/drupal/includes--form.inc/group/form_api/7
which looks very complex and complete.
However in the above link, they talk about modules, and if I understood correctly, before being able to use the forms api(s) I should write an module to configure the forms to be generated, and the api's would use this configuration data.
Frist of all, is my understanding correct?
Is there another way to achieve the same result, maybe add in the body of the page php code? based on the type of body text I would say this is not possible since the options are Filtered HTML, Full HTML and Plain text.