Bob, Max,
See line 579 in your 'chronocontact.php' file where the page is redirected after handling the codeblocks. These redirection statements (lines 578-580) IMHO should *not* be part of the codeblock execution loop that begins on line 535 and ends on line 581.
The effect is that after the execution of the first codeblock (which depends on the specified order), the redirection already and prematurely takes place, leaving the other two (potentially specified) codeblocks unexecuted!
If you drag the '}' on line 581 seven lines up to line 574, as I did, things work like expected ...
See line 579 in your 'chronocontact.php' file where the page is redirected after handling the codeblocks. These redirection statements (lines 578-580) IMHO should *not* be part of the codeblock execution loop that begins on line 535 and ends on line 581.
The effect is that after the execution of the first codeblock (which depends on the specified order), the redirection already and prematurely takes place, leaving the other two (potentially specified) codeblocks unexecuted!
If you drag the '}' on line 581 seven lines up to line 574, as I did, things work like expected ...