need help on "Form"

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • Doncng
    Private First Class

    • Nov 2007
    • 8

    need help on "Form"

    my contact page doesn't pop up, please help
  • Doncng
    Private First Class

    • Nov 2007
    • 8

    #2
    "webpage can't be found" message

    Http 404 not found. message , help please

    Comment

    • Karen Mac
      General

      • Apr 2006
      • 8332

      #3
      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
      02036089024 / United Kingdom
      291916438 / Australia

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

      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)


      Comment

      • Doncng
        Private First Class

        • Nov 2007
        • 8

        #4
        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.

        Comment

        • lemmondr
          Second Lieutenant

          • Sep 2007
          • 104

          #5
          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:



          It must match as shown above.

          good luck

          Dan.

          Comment

          • Andy128
            Major General

            • Dec 2005
            • 2317

            #6
            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!

            Comment

            • Doncng
              Private First Class

              • Nov 2007
              • 8

              #7
              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.

              Comment

              • Doncng
                Private First Class

                • Nov 2007
                • 8

                #8
                Re: need help on "Form"

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

                Comment

                • Andy128
                  Major General

                  • Dec 2005
                  • 2317

                  #9
                  Re: need help on "Form"

                  Don-
                  Your form is here;


                  But you have the link as this;


                  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!

                  Comment

                  • lemmondr
                    Second Lieutenant

                    • Sep 2007
                    • 104

                    #10
                    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);
                    ?>

                    Comment

                    • Doncng
                      Private First Class

                      • Nov 2007
                      • 8

                      #11
                      Re: need help on &quot;Form&quot;

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

                      Comment

                      • Doncng
                        Private First Class

                        • Nov 2007
                        • 8

                        #12
                        Re: need help on &quot;Form&quot;

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

                        Comment

                        Working...
                        X