Results 1 to 6 of 6

Thread: How to add a 'Thanks for your email' type page
      
   

  1. #1
    aytactekin is offline Corporal
    Join Date
    Dec 2006
    Posts
    16

    Default How to add a 'Thanks for your email' type page

    I want to be able to direct people who contact me via my 'Contact Me' link to a thank you page. For example i want people to email me and then once they do, to direct them to a Thank You page.

    Additionally, if they cant fill in the information on the contact form correctly i also want to be able to direct them to an "error page"

    Please visit my site http://www.wealthy-prick.com/contactme.html to see what i am talking about.

    If somebody could assit with this i would honestly appreciate it very much.

    Thanks

  2. #2
    Join Date
    Mar 2006
    Location
    Mallorca, Spain
    Posts
    6,313

    Default Re: How to add a 'Thanks for your email' type page

    Download my FREE contact form and you will be able to see the code to accomplish the error routines, its quite simple.
    example:

    // error checking
    if (strlen($firstname) == 0 )
    {
    header("Location: name_error.html");
    exit;
    }
    if (strlen($lastname) == 0 )
    {
    header("Location: name_error.html");
    exit;
    }

    See the whole script to put the above code in context.

  3. #3
    aytactekin is offline Corporal
    Join Date
    Dec 2006
    Posts
    16

    Default Re: How to add a 'Thanks for your email' type page

    Thanks for your reply davidundalicia. I have already downloaded your Zip file but to tell you the truth its still too hard for me. The reason is i already have a form set up and error page the way i want it however, i find it hard to incorporate your code into what i want. Not because your code is too confusing but because im new to all this.

    Is anybody out there willing to do this for me for a price? Please im desperate

  4. #4
    Join Date
    Mar 2006
    Location
    Mallorca, Spain
    Posts
    6,313

    Default Re: How to add a 'Thanks for your email' type page

    Email me from any of my contact pages, and I will do it for you
    (see my websites below)

  5. #5
    aytactekin is offline Corporal
    Join Date
    Dec 2006
    Posts
    16

    Default Re: How to add a 'Thanks for your email' type page

    Thanks for that David............muc appreciated. I have emailed you through your http://weddingdressmarket.co.uk/ site.

    Hope to hear from you soon.

  6. #6
    Join Date
    Mar 2006
    Location
    Mallorca, Spain
    Posts
    6,313

    Default Re: How to add a 'Thanks for your email' type page

    aytactekin:

    Your new contact form has been completed and tested. you may now view and test it yourself at the link that I have just emailed to you.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49