Devarajan Ramakrishnan wrote:
>
>
> Hello,
>
> I am trying to create a survey with the following requirement
>
> 1. Survey should cater to a set of respondents (say 20 of them)
>
> 2. Each respondent should be able to fill out the same survey as many
> times as there are selections from a list (say 10 selections per user)
>
>
>
> To give a scenario, let us assume the list of respondents is
> a set of project managers managing different number of projects. All I
> need is when a Project manager logs in as a respondent; he should be
> able to respond to the survey as many times as the number of projects
> managed by him by choosing the appropriate Project from a list. Is this
> possible with phpESP? How can I achieve this functionality?
>
>
>
> Thank you,
>
> Ramki.
This is not really "survey" functionality. To achieve this: create your
own login page; so when someone logs in, they see their list of projects
and for each project a link to a survey (you need to create this page
yourself). For the login: try to use the database of phpESP for
usernames and passwords.
For the surveys: create 10 copies of the same survey, not much work
about that (5 minutes and you have 10 identical surveys, just change
their name to match your projects).
Since survey.php can work with the name of the survey as a parameter in
the url, create surveys with a name logically linked to each project, so
then this list can be generated by a script, and if a new project is
added you just need to create a survey with the same name.
Hope this helps,
Franky
|