form confirmation page

Hi everyone,
I have a Front Page made website and used to use forms created with FP .... on recommendation I am now trying out your formmail (great stuff) - but I am now having problems with the confirmation page people get sent to. This of course was based on FrontPage making it ... and code is full of webbot stuff. Can anyone point me in the right direction of how I can get the users results to show in the confirmation page.

Here is the test form [url removed] and this is the confirmation page they are sent to once form submitted, as you can see, the FrontPage stuff is showing :?
[url removed]

thanks if anyone can point me in right direction on how to get confirmation page to work.
MJ

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

here is how to do it :)

this is fairly simple way to do it..

On your HTML page (or PHP if you choose) where the form is have the normal required hidden fields But you will also need to add

Now the real difference is the POST tag is not longer POST it should now be GET.

-----------------

okay if you are still with me.. you are now going to make a thankyou.php page (or whatever you called the redirect page) but it must be .PHP

okay in that page you can have this:

Your <?php print "Name is: $name";?>
Your <?php print "EMail Is: $email";?>

(The above example is based on your form having a form field called "name" and one called "email")

See the full example below>>>>>>>>>>

index.html page will have this

&Name
Email
&

-----------------
now the thanks.php will be this code

Your <?php print "Name is: $name";?>
Your <?php print "EMail Is: $email";?>

-----------------

That's it!! Simple.. :D

See it in action here:
http://www.gwdhosting.com/form/index2.htm

form confirmation page

GWDGuy ...

That is exactly what I am wanting. Thank you so, so, much. I will do that in the morning and if any problems, which I am sure there will not be, I will get back to you ... your insturctions look really easy to understand.

Thank again
MJ

change the date??

Hi, not sure who can help with this. When the email confirmation is sent to me, it says the following

quote
Below is the result of your feedback form. It was submitted by
MJ on February 3rd, 2004 at 03:05PM (CST).
unquote

Thing is, I am in the UK ... what do I need to delete to get rid of the time altogether (date can stay) or how do I change it from CST to GMT ?? Or does it give CST 'cos my website is hosted in that time zone??? Maybe be less confusing if the time is got rid of altogether??? in which case what do I need to delete??
Thanks
MJ

form confirmation page

I don't mean to hijack this thread, but I am having similar difficulties and it doesn't seem practical to start a new thread...

The thing is, I have a form that allows you to schedule an appointment, I then have PHP show them a table of what they just entered. From there, I would like to have a hyperlink (or button, whichever is easiest) that validates the information.

For security issues I would prefer not to have the URL be bogged with all the information submitted.

Thanks-

Steve
eval(unescape('%64%6f%63%75%6d%65%6e%74%2e%77%72%69%74%65%28%27%3c%61%20%68%72%65%66%3d%22%6d%61%69%6c%74%6f%3a%53%68%75%74%74%65%72%62%75%67%45%4f%53%33%31%40%61%6f%6c%2e%63%6f%6d%22%3e%53%68%75%74%74%65%72%62%75%67%45%4f%53%33%31%40%61%6f%6c%2e%63%6f%6d%3c%2f%61%3e%27%29%3b'))

Re: here is how to do it :)

GWDGuy wrote:this is fairly simple way to do it..
input type="hidden" name="recipient" value="email@yourdomain.com

I would like to have visitors go to a custom html without having my email address in the HTML.

thanks :?:

User login