Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Need help on HTML Survey
Old 06-02-2010, 02:58 PM Need help on HTML Survey
Junior Talker

Posts: 4
Trades: 0
Ok I got the form made and need to know how to process info the customer fills out. they will recieve this form in an email and send it out from the button in email. This is what i got.


Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<table><html xmlns="http://www.w3.org/1999/xhtml">
<body><form method="post" name="Customer Survey" action="mailto:matt@hotmail.com" id="Customer Survey>
  <h2 class="verahead">Customer Satisfaction Survey</h2>
  <span class="vera">
 <table> <tr><td>Company:&nbsp<input type="text" size="30" maxlength="70" name="comapny"></td>
 <td>Your Name:&nbsp<input type="text" size="30" maxlength="70" name="comapny"></td></tr>
</table><br />
  </span><span class="verabold">Please rate on a scale 1 to 5 (1) being poor and (5) being excellent </span><br /><br />
  <table>
<tr><td width="434" class="vera">The courtesy and professionalism displayed through the process of your RFQ  </td>
<td width="190">

<input type="radio" name="prof" value="5">
<span class="vera">5</span>
<input type="radio" name="prof" value="4">
<span class="vera">4
<input type="radio" name="prof" value="3">3
<input type="radio" name="prof" value="2">2
<input type="radio" name="prof" value="1">1 </span><br /></td></tr>
<tr>
<td width="575" class="vera">The timeliness and information contained with the return of your RFQ</td>
<td width="100">

<input type="radio" name="proc" value="5">
<span class="vera">5</span>
<input type="radio" name="proc" value="4">
<span class="vera">4
<input type="radio" name="proc" value="3">3
<input type="radio" name="proc" value="2">2
<input type="radio" name="proc" value="1">1 </span><br /></td></tr>

<tr>
<td width="575" class="vera">Upon the submittal of your purchase order, was the turn around time satisfactory</td>
<td width="190">

<input type="radio" name="sub" value="5">
<span class="vera">5</span>
<input type="radio" name="sub" value="4">
<span class="vera">4
<input type="radio" name="sub" value="3">3
<input type="radio" name="sub" value="2">2
<input type="radio" name="sub" value="1">1 </span><br /></td></tr>

<tr>
<td width="575" class="vera">Quality of our Fabrication and Welding</td>
<td width="190">

<input type="radio" name="fab" value="5">
<span class="vera">5</span>
<input type="radio" name="fab" value="4">
<span class="vera">4
<input type="radio" name="fab" value="3">3
<input type="radio" name="fab" value="2">2
<input type="radio" name="fab" value="1">1 </span><br /></td></tr>

<tr>
<td width="575" class="vera">Quality of our Paint Finish</td>
<td width="190">

<input type="radio" name="paint" value="5">
<span class="vera">5</span>
<input type="radio" name="paint" value="4">
<span class="vera">4
<input type="radio" name="paint" value="3">3
<input type="radio" name="paint" value="2">2
<input type="radio" name="paint" value="1">1 </span><br /></td></tr>

<tr>
<td width="575" class="vera">Satisfaction level with our Engineering Dept. / Process</td>
<td width="190">

<input type="radio" name="eng" value="5">
<span class="vera">5</span>
<input type="radio" name="eng" value="4">
<span class="vera">4
<input type="radio" name="eng" value="3">3
<input type="radio" name="eng" value="2">2
<input type="radio" name="eng" value="1">1 </span><br /></td></tr>

<tr>
<td width="575" class="vera">Satisfaction level of the completion time</td>
<td width="190">

<input type="radio" name="time" value="5">
<span class="vera">5</span>
<input type="radio" name="time" value="4">
<span class="vera">4
<input type="radio" name="time" value="3">3
<input type="radio" name="time" value="2">2
<input type="radio" name="time" value="1">1 </span><br /></td></tr>
<tr>
<td width="575" class="vera">Overall satisfaction level with Imperial Industries, Inc.</td>
<td width="190">

<input type="radio" name="over" value="5">
<span class="vera">5</span>
<input type="radio" name="over" value="4">
<span class="vera">4
<input type="radio" name="over" value="3">3
<input type="radio" name="over" value="2">2
<input type="radio" name="over" value="1">1 </span><br /></td></tr>

  <tr><td><br><center><input type="submit" value="Submit">
  </form></center></td></tr>
</table>
  
</body>
</html></table>
guy dowd is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-02-2010, 03:06 PM Re: Need help on HTML Survey
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
A XHTML1.1 DTD will not work for most email clients.
The <html> element should NOT be enclosed in a table!

AND the form action will need to point to a URI on a server that can process the data
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 06-02-2010, 03:18 PM Re: Need help on HTML Survey
Junior Talker

Posts: 4
Trades: 0
K well ya i just wrote it quick im not worried bout the perfection of that code i have not proofed it yet. I need to know how to write the action for this. I usually use cfm but is not supported in my email so i need to know how to do this using html in an email

thanks

Guy
guy dowd is offline
Reply With Quote
View Public Profile
 
Old 06-02-2010, 03:23 PM Re: Need help on HTML Survey
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
so i need to know how to do this using html in an email
You can't
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 06-02-2010, 04:57 PM Re: Need help on HTML Survey
Junior Talker

Posts: 4
Trades: 0
Well what is my other options php? i dont know anything about that so i would need alot of help
guy dowd is offline
Reply With Quote
View Public Profile
 
Old 06-02-2010, 05:17 PM Re: Need help on HTML Survey
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
PHP, ASP, .NET, Perl, Python or any serverside code that can accept POST or GET data and process it into whatever form you require.
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 06-02-2010, 09:39 PM Re: Need help on HTML Survey
Ultra Talker

Posts: 423
Name: Janice McClean
Trades: 0
I think what you are attempting is kind of unrealistic. I know you think people will be more likely to do the survey if they don't have to go to a different URL address but, in the end, they have to.

I think you should just link them to the survey and include a begging message in the e-mail that you'd love their response.

I found this thread to be particularly interesting: http://myhosting.com/forums/myhostin...orm-email.html

The OP is using ASP instead which might be a solution?
cantletugo is offline
Reply With Quote
View Public Profile
 
Old 06-03-2010, 09:42 AM Re: Need help on HTML Survey
Junior Talker

Posts: 4
Trades: 0
So there is no way to have a form inside a email as an html then have the submit button run through a external link to send email of values of the forms?
guy dowd is offline
Reply With Quote
View Public Profile
 
Old 06-03-2010, 09:48 AM Re: Need help on HTML Survey
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
No!


....
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 06-04-2010, 12:20 AM Re: Need help on HTML Survey
Extreme Talker

Posts: 168
Name: James
Location: Australia
Trades: 0
I have had html webpages which had sent the form data to an email address.

Did this only once years ago, but not since. It did work back then, I can not say how I had it work.

Now days, I stick to a PHP request processor to work on the POST details.
TRANZIT JIM is offline
Reply With Quote
View Public Profile Visit TRANZIT JIM's homepage!
 
Reply     « Reply to Need help on HTML Survey
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.50663 seconds with 12 queries