- This topic is empty.
-
AuthorPosts
-
August 12, 2009 at 3:11 pm #25744
swenson_designs
MemberHey 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
August 12, 2009 at 3:34 pm #62162falkencreative
MemberIt 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.
August 12, 2009 at 4:00 pm #62164Mr KiTT3N
Memberaction 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….
August 12, 2009 at 5:17 pm #61873swenson_designs
Member"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!
August 12, 2009 at 8:08 pm #62176swenson_designs
Member"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?
October 14, 2019 at 7:50 pm #297298pulaubidadari
ParticipantI use Sending Form 7 to send the email slowly how to get into the email quickly
-
AuthorPosts
- The topic ‘Form Action HELP!’ is closed to new replies.