Jump to content

Need Help with Payment System


$Three3

Recommended Posts

Hi everyone, I am currently working on a site of mine and I have seemed to run into a problem. I have all of my scripts done and working except for the registration script. I have completed the registration script but there is one thing missing on it. I want the user to have to pay the signup fee during the registartion process. My question is, is there any simple or free prebuilt package? If so that would be great and thanks in advandce for the replies. I have searched google but have not found rally what I am looking for.

 

Here is my registration html form:

 

<fieldset><legend>Please fill out the form below to enroll into Lincoln Academy</legend><form action="register2.php" method="post">
	  <p>First Name: <input name="fname" type="text" size="30" maxlength="26" /></p>
	  <p>Last Name: <input name="lname" type="text" size="30" maxlength="26" /></p>
	  <p>Email: <input name="email" type="text" size="30" maxlength="30" /></p>
          <p>Cofirm Email: <input name="email2" type="text" size="30" maxlength="16" /></p>
	  <p>Phone: <input name="phone" type="text" size="30" maxlength="16" /><font size="2">(fomrat: 7135620271)</font></p>
          <p>Address: <input name="address" type="text" size="30" maxlength="60" /></p>
          <p>City: <input name="city" type="text" size="30" maxlength="60" /></p>
          <p>State: <select name="state" size="1">
                        <option value="AK">AK</option>
                        <option value="AL">AL</option>
                        <option value="AR">AR</option>
                        <option value="AZ">AZ</option>
                        <option value="CA">CA</option>
                        <option value="CO">CO</option>
                        <option value="CT">CT</option>
                        <option value="DC">DC</option>
                        <option value="DE">DE</option>
                        <option value="FL">FL</option>
                        <option value="GA">GA</option>
                        <option value="HI">HI</option>
                        <option value="IA">IA</option>
                        <option value="ID">ID</option>
                        <option value="IL">IL</option>
                        <option value="IN">IN</option>
                        <option value="KS">KS</option>
                        <option value="KY">KY</option>
                        <option value="LA">LA</option>
                        <option value="MA">MA</option>
                        <option value="MD">MD</option>
                        <option value="ME">ME</option>
                        <option value="MI">MI</option>
                        <option value="MN">MN</option>
                        <option value="MO">MO</option>
                        <option value="MS">MS</option>
                        <option value="MT">MT</option>
                        <option value="NC">NC</option>
                        <option value="ND">ND</option>
                        <option value="NE">NE</option>
                        <option value="NH">NH</option>
                        <option value="NJ">NJ</option>
                        <option value="NM">NM</option>
                        <option value="NV">NV</option>
                        <option value="NY">NY</option>
                        <option value="OH">OH</option>
                        <option value="OK">OK</option>
                        <option value="OR">OR</option>
                        <option value="PA">PA</option>
                        <option value="RI">RI</option>
                        <option value="SC">SC</option>
                        <option value="SD">SD</option>
                        <option value="TN">TN</option>
                        <option value="TX">TX</option>
                        <option value="UT">UT</option>
                        <option value="VA">VA</option>
                        <option value="VT">VT</option>
                        <option value="WA">WA</option>
                        <option value="WI">WI</option>
                        <option value="WV">WV</option>
                        <option value="WY">WY</option>
                    </select></p>
          <p>ZIP Code: <input name="zip" type="text" size="30" maxlength="16" /></p>
          <p>Date of Birth: <select name="month">
<option value="1">January
<option value="2">February
<option value="3">March
<option value="4">April
<option value="5">May
<option value="6">June
<option value="7">July
<option value="8">August
<option value="9">September
<option value="10">October
<option value="11">November
<option value="12">December
</select>
<select name="day">
<option value="1">1
<option value="2">2
<option value="3">3
<option value="4">4
<option value="5">5
<option value="6">6
<option value="7">7
<option value="8">8
<option value="9">9
<option value="10">10
<option value="11">11
<option value="12">12
<option value="13">13
<option value="14">14
<option value="15">15
<option value="16">16
<option value="17">17
<option value="18">18
<option value="19">19
<option value="20">20
<option value="21">21
<option value="22">22
<option value="23">23
<option value="24">24
<option value="25">25
<option value="26">26
<option value="27">27
<option value="28">28
<option value="29">29
<option value="30">30
<option value="31">31
</select>
<select name="year">
<option value="2002">1995
<option value="2003">2003
<option value="2004">2004
<option value="2005">2005
</select>
	  <p>Password: <input name="password1" type="password" size="30" maxlength="16" /></p>
	  <p>Cofirm Password: <input name="password2" type="password" size="30" maxlength="16" /></p>
	  <p><input name="submit" type="submit" value="Enroll" />
	  <input name="reset" type="reset" value="Reset" /></p>
	  <input name="submitted" type="hidden" value="true" />
	  </form>

Link to comment
https://forums.phpfreaks.com/topic/191626-need-help-with-payment-system/
Share on other sites

Do you know who you will be using as the payment service provider?

I think they will probably have their own method of taking payment.

 

I would personally take their details, submit them to the database then direct them to payment.php where they could start the payment process

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.