Results 1 to 7 of 7

Thread: check out site
      
   

  1. #1
    jkadin's Avatar
    jkadin is offline Brigadier General
    Join Date
    Jan 2008
    Location
    woodbourne new york
    Posts
    1,479

    Default check out site

    Could somebody check my contact page for me its seems hat he hank you page is not coming up on my computer thanks.

    Joe
    www.anytime-figurines.com
    thank you

  2. #2
    DCOFFICESERVICES is offline Special Status
    Join Date
    Oct 2007
    Location
    Bristol, UK
    Posts
    481

    Default Re: check out site

    Hello

    I just clicked on your contact page from your home page and got an error page

    You have made the url

    http://www.anytime-figurine.com/contact-us.html

    instead of

    http://www.anytime-figurines.com/contact_us.html

    you have used a - instead of an _ underscore

    In the contact us page, if you right click the form, did you you call the action field to action.php, method to post & encoding type to multipart/form-data?

    Regards

    Darren

  3. #3
    jkadin's Avatar
    jkadin is offline Brigadier General
    Join Date
    Jan 2008
    Location
    woodbourne new york
    Posts
    1,479

    Default Re: check out site

    The contact page was correct contact_us the coding is correct the thank you page is correct according to the tutorial just don't understand

  4. #4
    adele1972's Avatar
    adele1972 is offline Major
    Join Date
    Nov 2007
    Posts
    285

    Smile Re: check out site

    hi your page is showing.....contact-us...should be...contact_us
    ;)
    if you click on it online it will show you in the address line

  5. #5
    DCOFFICESERVICES is offline Special Status
    Join Date
    Oct 2007
    Location
    Bristol, UK
    Posts
    481

    Default Re: check out site

    I can see your contact us page

    http://www.anytime-figurines.com/contact_us.html

    and I can see your thankyou page (although it doesn't work when your contact form has been submitted)

    http://www.anytime-figurines.com/action.php

    You say you have followed the BV tutorials. Can you confirm that you have checked the form properties as per my earlier post?

    Also have you put in the little bit of html code on your action page?

    Also from your home page, double check and click on your contact button because I am getting an error page.

    Regards

    Darren

  6. #6
    jkadin's Avatar
    jkadin is offline Brigadier General
    Join Date
    Jan 2008
    Location
    woodbourne new york
    Posts
    1,479

    Default Re: check out site

    The home page the hpyerlink was wrong
    <?PHP
    $mailto = "joe@anytime-figurines.com";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "contact form submission";
    $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);

    and this is the code I had pasted please le me know if its wrong

    Thanks joe
    www.anytime-figurines.com

  7. #7
    jkadin's Avatar
    jkadin is offline Brigadier General
    Join Date
    Jan 2008
    Location
    woodbourne new york
    Posts
    1,479

    Thumbs up Re: check out site

    I found ou the problem its solved and working. The submit button was outside the form box. Thanks you for all your help in searching out the problem.

    Thanks Joe
    www.anytime-figurines.com

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