Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Form Action HELP!

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #25744

    Hey all,

    I just recently put up this site http://www.bigfootcanoerental.com/ a wordpress based site. I need to have the content form and the reservation form send all the information that is inputed by the user to send an e-mail in a nice clear format to my client.

    I know I have to put something in the "action" part of the code and maybe something in the cgi-bin to make this work <form action="#" method="post">

    The two page links are: http://www.bigfootcanoerental.com/contact/ and http://www.bigfootcanoerental.com/reservations/

    Any suggestions or help is greatly appreciated!

    Nick

    #62162

    It may be simpler if you use a WordPress plugin to handle your contact forms. For example: http://wordpress.org/extend/plugins/contact-form-7/

    Should save you the hassle of writing all of the code to process the form and send it yourself.

    #62164
    Mr KiTT3N
    Member

    action just refers to "what page will i load when you hit submit"

    It is sometimes it self, some times it targets a another script

    action="" will post your form to it’s self and at the top of your page you would write something like

    Code:
    if(isset($_POST))
    {
    $name = $_POST[‘name’];
    ect….
    }

    This will run the code if some one clicks on submit….

    #61873
    "falkencreative" wrote:
    It may be simpler if you use a WordPress plugin to handle your contact forms. For example: http://wordpress.org/extend/plugins/contact-form-7/

    Should save you the hassle of writing all of the code to process the form and send it yourself.

    Can I use this with the existing code that I have set up for the form already and use the plug-in? I apologize, I’m not good with forms. WPCoder created this form page for me.

    Thanks!

    #62176
    "xheathen" wrote:
    If I understand correctly, you will have to rebuild the form using the WP Plugin within the confines of WP, and then you’d have to go in and style it to look the way it looks right now.

    Is there anyway I can do it with the existing code thats already there?

    #297298
    pulaubidadari
    Participant

    I use Sending Form 7 to send the email slowly how to get into the email quickly

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Form Action HELP!’ is closed to new replies.