Announcement

Collapse
No announcement yet.

redesigned site

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

  • #16
    Re: redesigned site

    like the site, very well done. Agree with the above but I would prefer to stay with the same Background and whatever theme through-out,looks more organized.
    Choco777
    www.mayatabasco.com


    Comment


    • #17
      Re: redesigned site

      Hi Im Asking Help To Start Making A Website For Me.thank You!

      Comment


      • #18
        Re: redesigned site

        Wrong Forum, but if you haven't yet done so, you should download Blue Voda Website Builder for FREE so you too, can build the website of your dreams yourself!

        (We all did our own, and are still amazed at how easy it was and how much fun we are still having being our own "webmasters'!)
        . VodaWebs....Luxury Group
        * Success Is Potential Realized *

        Comment


        • #19
          Re: redesigned site

          Hi sm,

          Your site is looking good ...just one little thing that I would change or include.... either a back button on your actual pages .. or a navigation bar on every page ...as some pages all I had was the back browser button above the website page....and on others had to close the page down to go elsewhere.....I'm a click and go person lol...if its not easy to navigate I would have clicked off and gone elsewhere ....:o)

          Well done though ...nice job
          Click the link below for page guidelines (no more sideways scroll)

          http://www.vodahost.com/vodatalk/sho...eferrerid=5490

          How to Center your page
          http://www.vodahost.com/vodatalk/blu...tml#post124746




          Comment


          • #20
            Re: redesigned site

            Originally posted by smcatering
            How do I change the action to php script?
            Double click on the dotted part of your form and the properties should open.
            then set the "ACTION" to the name of your php script.

            if you still have problems, email me your php script.

            have fun
            Have fun
            Regards..... David

            Step by Step Visual Tutorials for the complete beginner
            Newbies / Beginners Forum
            FREE Membership Login Scripts: - Meta Tags Analyzer
            My Social Networking Site - Free Contact Forms
            Finished your New website!! Now get it noticed Here:

            Comment


            • #21
              Re: redesigned site

              Ok, I think this is going to a bit complicated. I don't think I have a php script, and if I do I have no clue where it's located. Per the tutorial, what I have on there right now is mailto:smcatering@bellsouth.net
              Apparently, this is not working. It's time to call the calvary...

              PS Thanks for the SE tip. I am going to change that ASAP!

              Mike
              Mike
              www.suzannemichaelcatering.com

              Comment


              • #22
                Re: redesigned site

                Hey whoa there.......I am the calvary

                keep your form as is and I will send you the php script.....
                in the meantime read up on using bluevoda FTP program.
                look for the video................its easy.
                Have fun
                Regards..... David

                Step by Step Visual Tutorials for the complete beginner
                Newbies / Beginners Forum
                FREE Membership Login Scripts: - Meta Tags Analyzer
                My Social Networking Site - Free Contact Forms
                Finished your New website!! Now get it noticed Here:

                Comment


                • #23
                  Re: redesigned site

                  oops........ you have removed the form from your website.....
                  either put it back as it was(you will still get mail) or else
                  send me your contact.bvp page as an attachment.......
                  Have fun
                  Regards..... David

                  Step by Step Visual Tutorials for the complete beginner
                  Newbies / Beginners Forum
                  FREE Membership Login Scripts: - Meta Tags Analyzer
                  My Social Networking Site - Free Contact Forms
                  Finished your New website!! Now get it noticed Here:

                  Comment


                  • #24
                    Re: redesigned site

                    It's back up and I emailed my request page in .bvp as you requested. I am still having a problem. Even with all the fields filled out, it redirects to the error page saying that I need to enter a name in the name field. I'm sure it's a matter of checking the script and making some minor adjustment, but I am not a code writer, therefore I would not know what to change/fix.
                    Thanks for all the help.
                    Mike
                    www.suzannemichaelcatering.com

                    Comment


                    • #25
                      Re: redesigned site

                      According to your form you have a file called process123.php
                      could you send me that as well please or post it here...x out your email address first........


                      you can now take the form off your site until its fixed....or change it to Mailto:
                      Have fun
                      Regards..... David

                      Step by Step Visual Tutorials for the complete beginner
                      Newbies / Beginners Forum
                      FREE Membership Login Scripts: - Meta Tags Analyzer
                      My Social Networking Site - Free Contact Forms
                      Finished your New website!! Now get it noticed Here:

                      Comment


                      • #26
                        Re: redesigned site

                        Here it is. The email address has been x out.

                        <?php
                        $name = $HTTP_POST_VARS['name'];
                        $email = $HTTP_POST_VARS['email'];
                        $phone = $HTTP_POST_VARS['phone'];
                        $event = $HTTP_POST_VARS['event'];
                        $gcount = $HTTP_POST_VARS['gcount'];
                        $info = $HTTP_POST_VARS['info'];

                        if (strlen($name) == 0)
                        {
                        echo "It appears that you have forgotten to fill in your name in the Name field. Please use the Back Button to return to the form and enter your name. Thank you!";
                        exit;
                        }
                        if (strlen($name) >=30)
                        {
                        echo "The length limit for the Name field cannot exceed 30 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                        exit;
                        }
                        if (strlen($email) == 0)
                        {
                        echo "The E-mail field is a required entry. Please use the Back Button to return to the form and enter a contact E-mail address. Thank you!";
                        exit;
                        }
                        if (strlen($email) >= 45)
                        {
                        echo "The length limit for the E-Mail field cannot exceed 45 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                        exit;
                        }
                        if (! ereg('[A-Za-z0-9_-]+\@[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+', $email))
                        {
                        echo "I believe that there is an error in the way you entered your E-mail address. Please check your entry and re-submit. Thank you!";
                        exit;
                        }
                        if (strlen($phone) == 0)
                        {
                        echo "It appears that you have forgot to fill in a phone number. Please use the Back Button to return to the form and enter a phone number where we can contact you at your convenience!";
                        exit;
                        }
                        if (strlen($phone) >=15)
                        {
                        echo "The length limit for the phone field cannot exceed 15 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                        exit;
                        }
                        if (strlen($event) == 0)
                        {
                        echo "It appears that you have forgot to specify what type of event you are having. Please use the Back Button to return to the form and enter your event type. Thank you!";
                        exit;
                        }
                        if (strlen($event) >=30)
                        {
                        echo "The length limit for the Event type field cannot exceed 30 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                        exit;
                        }

                        if (strlen($gcount) == 0)
                        {
                        echo "It appears that you have forgot to fill in the number of guests that will be attending your event. Please use the Back Button to return to the form and enter the number of guests. Thank you!";
                        exit;
                        }
                        if (strlen($name) >=10)
                        {
                        echo "The length limit for the guest count field cannot exceed 10 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                        exit;
                        }
                        if (strlen($info) >= 300)
                        {
                        echo "The description area is limited to 300 characters / spaces. It appears that you have exceeded that limit. Please use the back button to return to the form and shorten this entry. Thank you!";
                        exit;
                        }
                        if (substr_count($info , '@') > "2")
                        {
                        echo "For security reasons this text (description) area limits the number of @ symbols that can appear within it. It would appear that you have exceeded that number. Please use the Back Button to return to the form and correct this. Thank you for your patience!";
                        exit;
                        }
                        //SEND MAIL
                        $mailto = "xxxxxxxx";
                        $mailsubj = "
                        Information requested from website";
                        $mailhead = "From: $email\n";
                        reset ($HTTP_POST_VARS);
                        $mailbody = "
                        request information form:\n";
                        while (list ($key, $val) = each ($HTTP_POST_VARS))
                        {
                        $mailbody .= "$key : $val\n";
                        }
                        mail($mailto,$mailsubj,$mailbody,$mailhead);
                        echo "Once again, thank you for considering Suzanne Michael Catering! We will get back to you very soon with a proposal, or we may contact you for more information if needed.";
                        ?>
                        Mike
                        www.suzannemichaelcatering.com

                        Comment


                        • #27
                          Re: redesigned site

                          Originally posted by smcatering
                          Here it is. The email address has been x out.


                          <?php
                          $name = $HTTP_POST_VARS['name'];
                          $email = $HTTP_POST_VARS['email'];
                          $phone = $HTTP_POST_VARS['phone'];
                          $event = $HTTP_POST_VARS['event'];
                          $gcount = $HTTP_POST_VARS['gcount'];
                          $info = $HTTP_POST_VARS['info'];
                          if (strlen($name) == 0)
                          {
                          echo "It appears that you have forgotten to fill in your name in the Name field. Please use the Back Button to return to the form and enter your name. Thank you!";
                          exit;
                          }
                          if (strlen($name) >=30)
                          {
                          echo "The length limit for the Name field cannot exceed 30 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                          exit;
                          }
                          if (strlen($email) == 0)
                          {
                          echo "The E-mail field is a required entry. Please use the Back Button to return to the form and enter a contact E-mail address. Thank you!";
                          exit;
                          }
                          if (strlen($email) >= 45)
                          {
                          echo "The length limit for the E-Mail field cannot exceed 45 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                          exit;
                          }
                          if (! ereg('[A-Za-z0-9_-]+\@[A-Za-z0-9_-]+\.[A-Za-z0-9_-]+', $email))
                          {
                          echo "I believe that there is an error in the way you entered your E-mail address. Please check your entry and re-submit. Thank you!";
                          exit;
                          }
                          if (strlen($phone) == 0)
                          {
                          echo "It appears that you have forgot to fill in a phone number. Please use the Back Button to return to the form and enter a phone number where we can contact you at your convenience!";
                          exit;
                          }
                          if (strlen($phone) >=15)
                          {
                          echo "The length limit for the phone field cannot exceed 15 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                          exit;
                          }
                          if (strlen($event) == 0)
                          {
                          echo "It appears that you have forgot to specify what type of event you are having. Please use the Back Button to return to the form and enter your event type. Thank you!";
                          exit;
                          }
                          if (strlen($event) >=30)
                          {
                          echo "The length limit for the Event type field cannot exceed 30 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                          exit;
                          }
                          if (strlen($gcount) == 0)
                          {
                          echo "It appears that you have forgot to fill in the number of guests that will be attending your event. Please use the Back Button to return to the form and enter the number of guests. Thank you!";
                          exit;
                          }
                          if (strlen($gcount) >=10)
                          {
                          echo "The length limit for the guest count field cannot exceed 10 characters / spaces. Please use the Back Button to return to the form and shorten this entry. Thank you!";
                          exit;
                          }
                          if (strlen($info) >= 300)
                          {
                          echo "The description area is limited to 300 characters / spaces. It appears that you have exceeded that limit. Please use the back button to return to the form and shorten this entry. Thank you!";
                          exit;
                          }
                          if (substr_count($info , '@') > "2")
                          {
                          echo "For security reasons this text (description) area limits the number of @ symbols that can appear within it. It would appear that you have exceeded that number. Please use the Back Button to return to the form and correct this. Thank you for your patience!";
                          exit;
                          }
                          //SEND MAIL
                          $mailto = "xxxxxxxx";
                          $mailsubj = "
                          Information requested from website";
                          $mailhead = "From: $email\n";
                          reset ($HTTP_POST_VARS);
                          $mailbody = "
                          request information form:\n";
                          while (list ($key, $val) = each ($HTTP_POST_VARS))
                          {
                          $mailbody .= "$key : $val\n";
                          }
                          mail($mailto,$mailsubj,$mailbody,$mailhead);
                          echo "Once again, thank you for considering Suzanne Michael Catering! We will get back to you very soon with a proposal, or we may contact you for more information if needed.";
                          ?>


                          First change the Name field on your form to name (small n)
                          second
                          try the amended code(above)....you had 2 $name fields where the 2nd one was for the $gcount field...you also had space bewtween 2 of the lines.
                          Have fun
                          Regards..... David

                          Step by Step Visual Tutorials for the complete beginner
                          Newbies / Beginners Forum
                          FREE Membership Login Scripts: - Meta Tags Analyzer
                          My Social Networking Site - Free Contact Forms
                          Finished your New website!! Now get it noticed Here:

                          Comment


                          • #28
                            Re: redesigned site

                            Hey David,
                            To say that you ARE the calvary is a gross understatement. I tried all kinds of different ways with the purpose of getting error messages to make sure it all works, and everything seems to have checked out. Give it a shot just to make sure and let me know if you find anything out of the norm.

                            Thanks a million!!!!

                            Mike
                            Mike
                            www.suzannemichaelcatering.com

                            Comment


                            • #29
                              Re: redesigned site

                              Tested every field and left the message that all are ok now......

                              Now goto: http://bluevodaforms.com/bvwebsites.html
                              and see your FREE page included in THE SHOWCASE OF WEBSITES

                              If you like what you see, goto:

                              click on JOIN and fill out the simple form to be included in
                              the SHOWCASE INDEX.................

                              have fun
                              Have fun
                              Regards..... David

                              Step by Step Visual Tutorials for the complete beginner
                              Newbies / Beginners Forum
                              FREE Membership Login Scripts: - Meta Tags Analyzer
                              My Social Networking Site - Free Contact Forms
                              Finished your New website!! Now get it noticed Here:

                              Comment

                              Working...
                              X