1: I need the form to be emailed to me. Right now when you hit submit on the form it just opens an email window. It has been a while since I encoded this stuff so I can't remember how to fix that.
2: I would like to integrate paypal into the site so that they can have the option of paying with a check to us or immediately with paypal. We already have a merchant account. I just need to know if anyone has done this before. We are looking at allowing them to select one ad option and/or one sponsorship option but no more than that.
Here is the site
Indiana YR web site
quote:
Azizza has a secret obsession with Richard Simmons, as evidenced by...
[QB]I am working on a form for people to sign up for our state convention. I have a very basic one thrown together but my brain just isn't working well this weekend.
Here are my problems.1: I need the form to be emailed to me. Right now when you hit submit on the form it just opens an email window. It has been a while since I encoded this stuff so I can't remember how to fix that.
You'll need a PHP or similar script that does this for you. HTML is not, as far as I'm aware, capable of anything like this.
code:
<div align="left" style="width: 550; height: 571"><font color="#C0C0C0">
<img src="joining.jpg" width="550" height="45"> </font>
<table border="2" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="550" id="AutoNumber1" bordercolor="#333333">
<tr>
<td width="100%" bgcolor="#3E0000"> </td>
</tr>
<tr>
<td width="100%" bgcolor="#240000">
<table id="AutoNumber1" height="326" cellSpacing="0" borderColorDark="#808080" width="539" borderColorLight="#c0c0c0" border="0">
<tr>
<td width="847" height="268">
<form action="mailto:" method="post" encType="text/plain">
<table border="0" width="100%">
<tr>
<td width="30%"><font size="2" color="#C0C0C0" face="Verdana"><b>In-Game
Name</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="30" size="25" name="GameName"></font></td>
</tr>
<tr>
<td width="30%"><font size="2" color="#C0C0C0" face="Verdana"><b>E-Mail</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="E-Mail"></font></td>
</tr>
<tr>
<td width="30%"><font size="2" color="#C0C0C0" face="Verdana">
<b>Species</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="Species"></font></td>
</tr>
<tr>
<td width="30%"><font size="2" color="#C0C0C0" face="Verdana"><b>Main
Skills</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="Class"></font></td>
</tr>
<tr>
<td width="30%">
<font size="2" color="#C0C0C0">
<font face="Verdana"><b>Gaming Availability</b>:</font></font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="Available"></font>
</td>
</tr>
<tr>
<td width="30%">
<font size="2" color="#C0C0C0">
<font face="Verdana"><b>Date Of Birth</b>:</font></font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="DOB"></font>
</td>
</tr>
<tr>
<td width="30%">
<font size="2" color="#C0C0C0" face="Verdana">
<b>Global Location</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="Location"></font>
</td>
</tr>
<tr>
<td width="30%">
<font size="2" color="#C0C0C0" face="Verdana">
<b>ICQ Number</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="ICQ"></font>
</td>
</tr>
<tr>
<td width="30%">
<font size="2" color="#C0C0C0" face="Verdana">
<b>AIM Screen Name</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="AIM"></font>
</td>
</tr>
<tr>
<td width="30%">
<font size="2" color="#C0C0C0" face="Verdana">
<b>Yahoo IM Nickname</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="YahooIM"></font>
</td>
</tr>
<tr>
<td width="30%">
<font size="2" color="#C0C0C0" face="Verdana">
<b>Connection Speed</b>:</font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="Conn"></font>
</td>
</tr>
<tr>
<td width="30%"><font size="2" color="#C0C0C0"><font face="Verdana">
<b>Personal Quote (RP):</b></font> </font></td>
<td width="70%"><font color="#C0C0C0"><input maxLength="50" size="25" name="Quote"></font>
</td>
</tr>
</table>
<p class="MsoNormal" align="center"><font face="Verdana"><span lang="EN-US">
<font size="2" color="#C0C0C0"><b>Additional Comments</b> (why you
want to join, how you heard about us, etc):</font></span></font></p>
<p class="MsoNormal" align="center"><textarea name="Comments" rows="5" cols="28"></textarea></p>
<p align="center"><font face="Verdana"><font size="2" color="#C0C0C0"> </font><input class="send" type="submit" value="Send" name="B1"><font size="2" color="#C0C0C0">
</font><input class="clear" type="reset" value="Reset" name="B2"></font></p>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
If your host has PHP support you can try http://boaddrink.com/. If not theres bound to be something it does support like ASP or Perl. You can find scripts for just about any language.
If you don't have a way of running server side scripts on your host you can always use a third party form processor. One free one I know of is at http://www.response-o-matic.com/
I do have some experience using PHP to integrate credit card authorization, but most authorization services Ive used have had an easy way of integrating themselves into your site with no programming required. Im not familiar with Paypal but I would assume theyve got something like that.