How can I ensure that the variable containing the current question id is incremented before moving to the next step or decremented before moving to the previous step?
I obviously need to do this to ensure that the code:
echo '<a href='bla.php?iQuestionID='.($iCurrentQuestionID-1).'>prev</a>';
echo '<a href='bla.php?iQuestionID='.($iCurrentQuestionID+1).'>next</a>';