PDA

View Full Version : Need help with email form.


ellarue
May-14-2008, 07:26 PM
I am trying to add an email form to my site and I cant figure out what the heck I am doing wrong.

I pasted the code for the form into the gallery description and it only show some parts.


Here is the page: http://ellaruephotography.smugmug.com/gallery/4938872_aeayQ



And here is the code:

<form method="post" action="http://www.emailmeform.com/fid.php?formid=86098" enctype="multipart/form-data">
<INPUT TYPE=hidden NAME=FCode VALUE="ekusgqi3">


<table cellpadding="2" cellspacing="0" border="0" bgcolor="#000000">
<tr>
<td>
<font face="Courier" size="3" color="#ffffff"></font>
<div style="" id="mainmsg"> </div>

</td>
</tr>
</table>

<br>

<table cellpadding="2" cellspacing="0" border="0" bgcolor="#000000">

<tr valign="top">
<td nowrap><font face="Courier" size="3" color="#ffffff">Your Name</font></td>
<td>
<input type="text" name="FieldData0" value="" maxlength="100" size="30"> </td>
</tr>

<tr valign="top">
<td nowrap><font face="Courier" size="3" color="#ffffff">Your Email Address</font></td>
<td>
<input type="text" name="FieldData1" value="" maxlength="100" size="30"> </td>
</tr>

<tr valign="top">
<td nowrap><font face="Courier" size="3" color="#ffffff">Subject</font></td>
<td>
<input type="text" name="FieldData2" value="" maxlength="100" size="30"> </td>
</tr>

<tr valign="top">
<td nowrap><font face="Courier" size="3" color="#ffffff">Message</font></td>
<td>
<textarea name="FieldData3" cols="60" rows="10"></textarea><br> </td>
</tr>

<tr>
<td colspan="2">
<table cellpadding=5 cellspacing=0 bgcolor="#ffffff" width="100%">
<tr bgcolor="#339900">
<td colspan="2"><font color="#FFFFFF" face="Verdana" size="2"><b>Image Verification</b></font></td>
</tr>
<tr>
<td style="padding: 2px;" width="10"><img src="http://www.emailmeform.com/turing.php" id="captcha"></td>
<td valign="top"><font color="#000000">Please enter the text from the image</font> <br><input type="text" name="Turing" value="" maxlength="100" size="10">
[ <a href="#" onclick=" document.getElementById('captcha').src = document.getElementById('captcha').src + '?' + (new Date()).getMilliseconds()">Refresh Image</a> ] [ <a href="http://www.emailmeform.com/?v=turing&pt=popup" onClick="window.open('http://www.emailmeform.com/?v=turing&pt=popup','_blank','width=400, height=300, left=' + (screen.width-450) + ', top=100');return false;">What's This?</a> ]
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td> </td>
<td align="right">
<input type="text" name="hida2" value="" maxlength="100" size="3" style="display : none;">
<input type="submit" class="btn" value="Send email" name="Submit"> <input type="reset" class="btn" value=" Clear " name="Clear"></td>
</tr>
<tr>
<td colspan=2 align="center">
<br>
</td>
</tr>
</table>

</form>






Is there anyone that can help me? Please???

Allen
May-14-2008, 08:40 PM
I am trying to add an email form to my site and I cant figure out what the heck I am doing wrong.

I pasted the code for the form into the gallery description and it only show some parts.


Here is the page: http://ellaruephotography.smugmug.com/gallery/4938872_aeayQ

And here is the code:

<form method="post" ...

</form>

Is there anyone that can help me? Please???
Make sure it has html tag around it. And do not edit directly in the box. Put
your html in notepad and make changes there, then paste the whole thing
in everytime. Think I read that it gets messed like you say doing that.

<html>
<form method="post" ...
...
</form>
</html>