Inhaltsverzeichnis

setNextPage()

void setNextPage(string pageID)

The function setNextPage() determines which page should be shown after “Next” is clicked on. Subsequent pages will not be displayed anymore with setNextPage('end'). Instead, the questionnaire ends after “Next”.

Tips

This function is particularly useful if a filter does not take effect immediately after the filter question. The filter (that cannot be on the same page as the filter question) can then be put on an interim page. An advantage of doing this is that the processing time of the following page is stored in the TIMEnnn variable (Additional Variables in the Data Set) for the respective page – this is not guaranteed with goToPage().

Note: Instead of setNextPage() to display the current page repeatedly in a loop it is better to use the function loopPage().

Note: Do not use setNextPage() to redisplay a page due to the participant providing incorrect information (Check Responses: Customized Response Check). Use the function repeatPage() instead.

Tip: If the participant should skip pages in the questionnaire, the function goToPage() is normally easier to use.

Tip: The order of which the pages will appear thereafter can also be determined with the function setPageOrder(); not just the next page.

Example

The following example assumes that the filter question “AB01” was asked on page 2 of the questionnaire. The following PHP code on page 4 ensures that participants who selected the first response option skip pages 5 to 7, and continue the questionnaire from page 8 (ID “tv_use”) onwards.

if (value('AB01') == 1) {
  setNextPage('tv_use');
}