Hi,
I'll try to help, but I am rather new at php.
Maybe sessions will work with php.
I think something like this might work:
session_start();
if (answered the 1st question correctly)
{
$first = 1;
}
else
{
$first = 0;
}
session_register('first');
Then if $first=1 you can allow the users to answer question2,
if $first=0 then ...
and so on ...
I don't understand exactly what you want, so maybe I am doing it all wrong, sorry..........
I hope this helps,
James