I'm looking for someone to help me set up my order form.
Basically I have a simple contact form (with name, email, comment, dropdown list, total cost) coded in HTML, but I need to:
1. Make the form actually work and send emails. (with validation)
2. Show total price depending on selected option of dropdown list.
3. When user "submits" order I need the contact form to direct him to a url (PayPal checkout page) URL will depend on the dropdow list selection.
For example:
User selects optionA, he will be sent to www. optionA .com.
User selects optionB, he will be sent to www. optionB .com.
Does that make sense?
I thought it was a good idea to go with a paid service (form builder) like Formstack.com. And its not. The source code they give out is way to complicated for me to apply my website's CSS style so I think I might need to have it coded directly to the site.
Another option is of course giving you the FormStack.com form source code and you can apply my CSS styles and sort of integrate it to my website.
The HTML form is already coded (as a form), here is the code for preview:
Thanks!
Any help will be great. I spent the last 3 hours trying to integrate it myself because my developer is not up until midnight, only to mess up the HTML big time! (I still have the original source HTML)
Cheers,
Fran
EDIT: This is a WTH thread. I'm not expecting free help so just get in touch with me anytime, if you have the skills for it.
Basically I have a simple contact form (with name, email, comment, dropdown list, total cost) coded in HTML, but I need to:
1. Make the form actually work and send emails. (with validation)
2. Show total price depending on selected option of dropdown list.
3. When user "submits" order I need the contact form to direct him to a url (PayPal checkout page) URL will depend on the dropdow list selection.
For example:
User selects optionA, he will be sent to www. optionA .com.
User selects optionB, he will be sent to www. optionB .com.
Does that make sense?
I thought it was a good idea to go with a paid service (form builder) like Formstack.com. And its not. The source code they give out is way to complicated for me to apply my website's CSS style so I think I might need to have it coded directly to the site.
Another option is of course giving you the FormStack.com form source code and you can apply my CSS styles and sort of integrate it to my website.
The HTML form is already coded (as a form), here is the code for preview:
Code:
<form action="" method="post" enctype="multipart/form-data" name="form">
<h3>Order Today!<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Consectetur adipiscing elit <span class="required">All fields are required.*</span></span></h3>
<p>Full Name:<span>*</span></p>
<div><input name="" type="text" class="submit_box" /></div>
<p>Email:<span>*</span></p>
<div><input name="" type="text" class="submit_box" /></div>
<p>Verify Email:<span>*</span></p>
<div><input name="" type="text" class="submit_box" /></div>
<p>Select Backlink Package:<span>*</span></p>
<select name="">
<option>Option A</option>
</select>
<p>Total Cost:<span>*</span><span class="cost">$999.00</span></p>
<p>Order Instructions/Comments<span>*</span></p>
<textarea cols="" rows="">
Please enter special order instructions
</textarea>
<input name="" type="image" src="http://www.wickedfire.com/images/place_orderbt.gif" class="place_orderbt" alt="PLACE ORDER" title="PLACE ORDER" />
</form>
Any help will be great. I spent the last 3 hours trying to integrate it myself because my developer is not up until midnight, only to mess up the HTML big time! (I still have the original source HTML)
Cheers,
Fran
EDIT: This is a WTH thread. I'm not expecting free help so just get in touch with me anytime, if you have the skills for it.