Forums

how to show results in redirect url

beadsboy 10 Jun, 2007
Hello,

I need to show the results in the redirect url like below example. Can i format the redirect url html page like the email template?

Dear {nameofuser},

Thankyou for submitting the form. We have received below details from you:
Name:
Surname:
Address:
ABC:
XYZ:


Thankyou,

Devang
Max_admin 10 Jun, 2007
Hi,

First, Please try not to press the submit button more than once or not to refresh the submitted page because you are making too many copies of the same post!! B)

Regarding your question, it wont be a good idea to do it like this, the best is to write this at your "Onsubmit code" field in the form :


Dear <?php echo $_POST['name']." ".$_POST['surname']; ?>,



Thankyou for submitting the form. We have received below details from you:

Name:<?php echo $_POST['name']; ?>

Surname:<?php echo $_POST['surname']; ?>

Address: complete this like teh above examples.....

ABC:

XYZ:


Regards

Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
beadsboy 10 Jun, 2007
Thankyou max ,

It works great.

I apologize for the double posts .. request you to delete the it.
This topic is locked and no more replies can be posted.