tamarian |
08-07-2005 10:29 PM |
Quote:
Originally Posted by Drakah
I get this error when I click on the "Values" link.
".../forums/display_answers.php?sid=28
could not be found."
|
The "values" link opens a popup windows with a list of possible values of the answers. What was the actual link? It should link to the main survey.php page.
Quote:
Originally Posted by Drakah
The setting for when users complete the page, I clicked on the [?] and the document told me there is a place to put in your own URL as a thank-you page. Where is the field to add this?
|
It's one of the options when creating a survey.
Quote:
Also, I would like to figure out how to have a "If Statement" to display on the home page whether they have taken the survey or not. I am thinking of creating a survey graphic to display on my CMPS (vbadvanced) portal home page saying to take the survey, and when they do, it would disappear. Any ideas?
|
This will require a query each time the main page is loaded, so I wouldn't recommend it. But it isn't hard. The only problem is which survey you want to check. If you have only one survey, say #28, you can query it like this:
$TookSurvey = $DB_site->query_first("SELECT uid FROM " . TABLE_PREFIX . "vbsurvey_completed_surveys WHERE uid = $bbuserinfo[userid])
|