Results 1 to 12 of 12

Thread: need help on "Form"
      
   

  1. #1
    Doncng is offline Private First Class
    Join Date
    Nov 2007
    Posts
    8

    Default need help on "Form"

    my contact page doesn't pop up, please help

  2. #2
    Doncng is offline Private First Class
    Join Date
    Nov 2007
    Posts
    8

    Default "webpage can't be found" message

    Http 404 not found. message , help please

  3. #3
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: need help on "Form"

    Well Don.. how about a link or some more info. How about an explanation of what you did to get the 404 not found and where and why the page is or isnt. How about a link to your site, so that, even if we dont have a clue what you are yelping about we can ALMOST figure it out.

    Sorry, I just havent got this telekinesis stuff down yet.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

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

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  4. #4
    Doncng is offline Private First Class
    Join Date
    Nov 2007
    Posts
    8

    Default Re: need help on "Form"

    I'm sorry, here is my site http://www.horoscopescenter.net/
    i'm going to work now, be back tonight and work on the stie, thanks all.

  5. #5
    lemmondr is offline Second Lieutenant
    Join Date
    Sep 2007
    Posts
    104

    Default Re: need help on "Form"

    Don,

    If I may, your url looks good. I think you need to take close look
    at your navigation bar, your "contact" should read:

    http://www.horoscopescenter.net/contact.html

    It must match as shown above.

    good luck

    Dan.

  6. #6
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: need help on "Form"

    Your contact page has a php extension- and that is fine, you just need to correct your link. Once you get that sorted- test the form and see if it works.

    Andy
    PHP- is a blast!

  7. #7
    Doncng is offline Private First Class
    Join Date
    Nov 2007
    Posts
    8

    Default Re: need help on "Form"

    Hi dan,
    i copy and paste the link to my navigation bar, save and publish then i try to test see if it work :( , still the same. do i need to set up my mail.

  8. #8
    Doncng is offline Private First Class
    Join Date
    Nov 2007
    Posts
    8

    Default Re: need help on "Form"

    Andy
    i check and recheck, can't get the page working.

  9. #9
    Andy128's Avatar
    Andy128 is offline Major General
    Join Date
    Dec 2005
    Location
    Michigan
    Posts
    2,322

    Default Re: need help on "Form"

    Don-
    Your form is here;
    http://www.horoscopescenter.net/contact.php

    But you have the link as this;
    http://www.horoscopescenter.net/contact.html

    Change it. Then test the form. Also- in your next post, please cut and paste the php script you are using to process the form.

    Andy
    PHP- is a blast!

  10. #10
    lemmondr is offline Second Lieutenant
    Join Date
    Sep 2007
    Posts
    104

    Default Re: need help on "Form"

    Don,

    Andy is right...make your contact form exts match. It has to be either
    PHP or HTML, these have to match. Also below is the PHP script that Andy is talking about:

    Here's the entire PHP code..modify the blue to fit your needs:

    ---------------------------------------------------------------
    <?PHP
    $mailto = "email@yoursite.com";
    $email = $HTTP_POST_VARS['email'];
    if ($email == "") {
    $email = $mailto;
    }
    $mailsubj = "Reservation request";
    $mailhead = "From: $email\n";
    reset ($HTTP_POST_VARS);
    $mailbody = "Values submitted from our Reservation Form:\n";
    while (list ($key, $val) = each ($HTTP_POST_VARS))
    {
    if ($key!="submit")
    {
    $mailbody .= "$key : $val\n";
    }
    }
    mail($mailto, $mailsubj, $mailbody, $mailhead);
    ?>

  11. #11
    Doncng is offline Private First Class
    Join Date
    Nov 2007
    Posts
    8

    Default Re: need help on "Form"

    thanks all, i'll be back tonight and try. go to work now.

  12. #12
    Doncng is offline Private First Class
    Join Date
    Nov 2007
    Posts
    8

    Default Re: need help on "Form"

    Andy
    Thank you,
    yes, it's working now. i changed the form and the link to html. BINGO
    Thanks all.

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