Forums

Different 'thanks message' on selection

funkyrhino 05 Sep, 2013
Hi,

Is it possible to show a different 'thanks message' if the user selects a certain drop-down field?

The scenario is the user selects if they download a prospectus or have one sent in the post. If download, the thanks message should say 'please download...' if post it needs to say 'the prospectus will be with you shortly...'

Any ideas much appreciated!

Many thanks,

Matt
GreyHead 05 Sep, 2013
Hi Matt,

Sure, you can't use PHP in a Thank You page action but you can in a Custom Code action and that will display in the same way. So use that to build your Thank You page instead.
<h3>Thank you</h3>
<p> . . .</p>
<?php
if ( $form->data['aaa'] ) {
?>
<p>. . .</p>
<?php
} else {
?>
<p> . . .</p>
<?php
}
?>

Bob
This topic is locked and no more replies can be posted.