Results 1 to 3 of 3

Thread: does anyone know html i need help ?
      
   

  1. #1
    night60000 is offline Master Sergeant
    Join Date
    Mar 2007
    Location
    New York USA
    Posts
    68

    Question does anyone know html i need help ?

    does anyone know HTML im looking for the code that refrash the page and go to home page right after the thank u page(action) for contact us
    so far this is what i have

    'Thank you, your message has been sent and we will get back to you shortly'
    <?PHP
    $mailto = "info@GTcell.com";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Contact Us";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "GTcellphone :\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    Danny B.

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: does anyone know html i need help ?

    The code in your post is the code that will mail you the form info. I suppose that you have pasted it in your Thank you page.

    To make it automatically redirect to your homepage after (say) 10 seconds, you need to paste the following code in the Between head Tag of your Thank you page HTML:

    <meta http-equiv="refresh" content="10;url=http://www.yoursite.com">

    changing 10 to whatever you like, and www.yoursite.com to your actual domain name.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    night60000 is offline Master Sergeant
    Join Date
    Mar 2007
    Location
    New York USA
    Posts
    68

    Thumbs up Re: does anyone know html i need help ?

    thank u very much for your help with this it works great :)
    Danny B.

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