Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do I make a submit button that will send the information to my email?
    primarykey
    data
    text
    <p>I'm making a survey for my teacher to hand out to the class (he doesn't know how and I know more than he does)</p> <p>My problem is I'm not too familiar with HTML and don't know how to get my submit button working.</p> <p>Here is my code:</p> <pre><code>&lt;html&gt; &lt;h2&gt; Please fill this out as feedback. &lt;/h2&gt; &lt;body&gt; &lt;form&gt; &lt;form method="post" action='mailto:example_email@hostname.com'&gt; &lt;input type="hidden" name="Re" value="survey"&gt; &lt;td&gt;On a scale of 1-10, how well did you understand this tutorial?&lt;/td&gt;&lt;br&gt; &lt;td&gt; &lt;input type="radio" value="1" name="q1"&gt;1 &lt;input type="radio" value="2" name="q1"&gt;2 &lt;input type="radio" value="3" name="q1"&gt;3 &lt;input type="radio" value="4" name="q1"&gt;4 &lt;input type="radio" value="5" name="q1"&gt;5 &lt;input type="radio" value="6" name="q1"&gt;6 &lt;input type="radio" value="7" name="q1"&gt;7 &lt;input type="radio" value="8" name="q1"&gt;8 &lt;input type="radio" value="9" name="q1"&gt;9 &lt;input type="radio" value="10" name="q1"&gt;10 &lt;/td&gt; &lt;br&gt; &lt;br&gt; &lt;td&gt;On a scale of 1-10, how much previous knowledge did you have before this tutorial?&lt;/td&gt;&lt;br&gt; &lt;td&gt; &lt;input type="radio" value="1" name="q2"&gt;1 &lt;input type="radio" value="2" name="q2"&gt;2 &lt;input type="radio" value="3" name="q2"&gt;3 &lt;input type="radio" value="4" name="q2"&gt;4 &lt;input type="radio" value="5" name="q2"&gt;5 &lt;input type="radio" value="6" name="q2"&gt;6 &lt;input type="radio" value="7" name="q2"&gt;7 &lt;input type="radio" value="8" name="q2"&gt;8 &lt;input type="radio" value="9" name="q2"&gt;9 &lt;input type="radio" value="10" name="q2"&gt;10 &lt;/td&gt; &lt;br&gt; &lt;br&gt; &lt;td&gt;On a scale of 1-10, how comfortable do you think your skills are with the knowledge you learned?&lt;/td&gt;&lt;br&gt; &lt;td&gt; &lt;input type="radio" value="1" name="q3"&gt;1 &lt;input type="radio" value="2" name="q3"&gt;2 &lt;input type="radio" value="3" name="q3"&gt;3 &lt;input type="radio" value="4" name="q3"&gt;4 &lt;input type="radio" value="5" name="q3"&gt;5 &lt;input type="radio" value="6" name="q3"&gt;6 &lt;input type="radio" value="7" name="q3"&gt;7 &lt;input type="radio" value="8" name="q3"&gt;8 &lt;input type="radio" value="9" name="q3"&gt;9 &lt;input type="radio" value="10" name="q3"&gt;10 &lt;/td&gt; &lt;br&gt; &lt;br&gt; &lt;td&gt;On a scale of 1-10, how likely are you to ever use HTML again?&lt;/td&gt;&lt;br&gt; &lt;td&gt; &lt;input type="radio" value="1" name="q4"&gt;1 &lt;input type="radio" value="2" name="q4"&gt;2 &lt;input type="radio" value="3" name="q4"&gt;3 &lt;input type="radio" value="4" name="q4"&gt;4 &lt;input type="radio" value="5" name="q4"&gt;5 &lt;input type="radio" value="6" name="q4"&gt;6 &lt;input type="radio" value="7" name="q4"&gt;7 &lt;input type="radio" value="8" name="q4"&gt;8 &lt;input type="radio" value="9" name="q4"&gt;9 &lt;input type="radio" value="10" name="q4"&gt;10 &lt;/td&gt; &lt;br&gt; &lt;br&gt; &lt;td&gt;On a scale of 1-10, did you enjoy taking part in this?&lt;/td&gt;&lt;br&gt; &lt;td&gt; &lt;input type="radio" value="1" name="q5"&gt;1 &lt;input type="radio" value="2" name="q5"&gt;2 &lt;input type="radio" value="3" name="q5"&gt;3 &lt;input type="radio" value="4" name="q5"&gt;4 &lt;input type="radio" value="5" name="q5"&gt;5 &lt;input type="radio" value="6" name="q5"&gt;6 &lt;input type="radio" value="7" name="q5"&gt;7 &lt;input type="radio" value="8" name="q5"&gt;8 &lt;input type="radio" value="9" name="q5"&gt;9 &lt;input type="radio" value="10" name="q5"&gt;10 &lt;/td&gt; &lt;br&gt; &lt;br&gt; Please include your thoughts, sugestions, or questions here:&lt;BR&gt; &lt;TEXTAREA NAME="Comments" ROWS="6" COLS="50"&gt;&lt;/TEXTAREA&gt; &lt;br&gt; &lt;br&gt; &lt;td&gt;&lt;input type="submit" value="Send"&gt;&lt;/td&gt; &lt;/form&gt; &lt;/body&gt; </code></pre> <p></p> <p>I'm sorry if it's messy, I'm just trying to throw this together and I'm not so great with HTML as it is.</p> <p>Where I have example_email@hostname.com, I have my real email there.</p> <p>Thanks!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload