Announcement

Collapse
No announcement yet.

Re: Advanced BlueVoda Form Processor

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Re: Advanced BlueVoda Form Processor

    Dear Friends,

    I tried to create the Thank You Page for the form in my website but while pasting the HTML code, I could not find those two lines which I need to change (my email id and subject line). Please suggest me the correct way if I am mistaking anywhere.

    Your Help Will be highly appreciated.



  • #2
    Problem with my thankyou page

    You are certainly making a mstake. The code that you need to paset is in the forms Tutorial 1 and for your convenience i will post it here under. As you see, there are three lines with parts in blue, these are the ones that need editing. Here follows the code:


    <?PHP
    $mailto = "youremail@yourdomain.com";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Type your mail subject here";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from web site form :\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>
    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!

    Comment

    Working...
    X