Hi
I'm wondering if I can show a the value of input field on a next page.
Concrete example:
I have this emailform:
As you can see the page redirects to "good.php".
I would like to have a message in the style of: "Thank you, you get your confirmationmail sent to *MAILADDRESS*"
I tried with this code, but without succes:
Am I overlooking something?
Thanks.
I'm wondering if I can show a the value of input field on a next page.
Concrete example:
I have this emailform:
- Code: Select all
<cms:form method="post" anchor='1'> <cms:get_flash 'success_flash_msg' /> <cms:if k_success > <cms:send_mail html='1' from='info@casadibatavia.com' to=frm_email bcc="<cms:if frm_afhandeling='Te leveren'>hello@samverdyck.be <cms:else />sam.verdyck@gmail.com</cms:if>" subject='Uw bestelling bij Casa Di Batavia' debug='1'> <br>Emailadres: <cms:show frm_email /> </cms:send_mail> <cms:redirect 'good.php' /> </cms:if> <cms:if k_error > <div class="error"> <ul> <cms:each k_error > <li><cms:show item /></li> </cms:each> </ul> </div> </cms:if> <cms:input type="text" name="email" label='E-mailadres' maxlength="100" validator='email' required='1' /> <div class="col-md-5"> <div class="checkout-box"> <cms:input empty_cart='1' name="paypal" class="button checkout-button checkout-btn" type="submit" value="Bestelling plaatsen" /> </div> </div> </cms:form>
As you can see the page redirects to "good.php".
I would like to have a message in the style of: "Thank you, you get your confirmationmail sent to *MAILADDRESS*"
I tried with this code, but without succes:
- Code: Select all
<cms:pages masterpage="checkout.php"> <cms:show frm_email /> </cms:pages>
Am I overlooking something?
Thanks.