HELP ME BOB! YOU'RE MY ONLY HOPE!
Please take a look at this application for employment form I'm working on.
http://logansinthecarolinas.com/newsite/index.php?option=com_chronoforms5&chronoform=Augusta203
I finally got the event switch to behave the way I want it to BUT now the captcha just keeps loading a new one on the last page. I'm using event switcher to allow the user to add another employment record to the application so if they select YES then it loads the next page and if they select NO it loads the last page.
If I remove the event switcher from the "on submit" section then captcha works fine.
here is my event switcher code:
Please note: this is in early development. I have only set a few fields as required at this point so that it is easier to fill it out during testing.
thanks in advance
Eric
Please take a look at this application for employment form I'm working on.
http://logansinthecarolinas.com/newsite/index.php?option=com_chronoforms5&chronoform=Augusta203
I finally got the event switch to behave the way I want it to BUT now the captcha just keeps loading a new one on the last page. I'm using event switcher to allow the user to add another employment record to the application so if they select YES then it loads the next page and if they select NO it loads the last page.
If I remove the event switcher from the "on submit" section then captcha works fine.
here is my event switcher code:
<?php
switch ($form->data['addemployer'] ) {
case 'page8':
default:
return 'page8';
break;
case 'page6':
return 'page6';
break;
case 'page7':
return 'page7';
break;
}
?>
Please note: this is in early development. I have only set a few fields as required at this point so that it is easier to fill it out during testing.
thanks in advance
Eric