Hi,
so here is a very small example.
1st question "short text" queries the database and returns the count of completes.
2nd question "relevance equation: if value of 1st question >30", "Do you want to proceed without ...?"
Quota with limit "0" on "No"
That's it.
Now it's up to you to taylor the end message according to the result of this first question (<=30, >30)
And the php file just contains:
1. connection to limesurvey_database
2. capture the POST-parameter
$SID = $_POST["sid"];
3. Query:
"SELECT count(*) FROM lime_survey_".$SID." WHERE submitdate is not NULL";
4. return the result
echo $count;
Joffm
P.S. I think the relevance equation of Q0 is set to "Info>3". You have to adapt it to 30, was just for the test.