I want to insert an html form into my website that just will allow visitors to enter a few personal details and then submit them which sends it to my email, however, I would like it to be SSL secured.
I've come up with the code for the basic form, now how do I activate the SSL encryption on it.
Here is my sample code so far:
<FORM METHOD="POST" ACTION="mailto:ja.schmidt@shaw.ca">
<INPUT TYPE="text" NAME="name" SIZE="30">
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA>
<SELECT NAME="Location" SIZE="1">
<OPTION SELECTED>U.S.A
<OPTION>Canada
<OPTION>Europe
<OPTION>Asia
<OPTION>South America
<OPTION>Australia
<OPTION>Africa
</SELECT>
<INPUT TYPE="submit">
<INPUT TYPE="reset">
</FORM>
I've come up with the code for the basic form, now how do I activate the SSL encryption on it.
Here is my sample code so far:
<FORM METHOD="POST" ACTION="mailto:ja.schmidt@shaw.ca">
<INPUT TYPE="text" NAME="name" SIZE="30">
<TEXTAREA NAME="comment" ROWS=6 COLS=40>
</TEXTAREA>
<SELECT NAME="Location" SIZE="1">
<OPTION SELECTED>U.S.A
<OPTION>Canada
<OPTION>Europe
<OPTION>Asia
<OPTION>South America
<OPTION>Australia
<OPTION>Africa
</SELECT>
<INPUT TYPE="submit">
<INPUT TYPE="reset">
</FORM>