Pay...Register...Login..?

John Klyne

Community Advocate
Community Support
Messages
964
Reaction score
7
Points
18
Hello everyone at x10hosting.

I am at the near completion of a site I have.

What I wanted to do, to finish it all up is this.

I wanted to use, a link to PayPal, for a member to pay X Dollars for our service on a monthly basis. I have already made the paypal button and so on.

But now my problem is that I want it to send users to a page on my site that would let them register, only, and only if they have paid from paypal.

How would I be able to make the registration page so that it only accepts registrants, if they paid through paypal? I do not want people to register, if they haven't paid, to just go to the link that someone copied and is sharing to the world.

And after the registration page, they would submit the information, and it would be saved on a database and such, as well as e-mailed to myself, as the information on the registration page is quite vital to the operation of the online business I am running, I want it to be e-mailed, to myself so that I can save the data externally away from internet access.

So once the registration page, works so that it only accepts registrants from people who have paid x Dollars for our online services.

I wanted to make it possible for these individuals to receive a referral link. That they can use to refer other members of society to my companies services. I wanted to make it so that those referred are tracked all the way up to the point that they actually joined under y referrals name, and paid their subscription to our services.

I am sure something like this may be complicated, but any information so that I can be set on the right direction is of course very welcomed, and appreciated.

Thank you,
From John Klyne.
 
Last edited:

John Klyne

Community Advocate
Community Support
Messages
964
Reaction score
7
Points
18
I am guessing that would be too complicated for someone to help on hehe.

I will do the processing and such manually for my site I guess. I made it so after paying they are sent to the registration page (regardless if you paid or not, I'll check if they paid manually.)

What I am having trouble with is, I have the registration page I made...but it doesn't send me the information/through e-mail.

I have it here to be viewed.
my form.html page is ...II have deleted some things in it that were not necessary to be seen, so that my post isn't 17632 charecters:) and it wld let me post it then
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>PAS Registration Page</title>
<link rel="stylesheet" type="text/css" href="view.css" media="all">
<script type="text/javascript" src="view.js"></script>
<script type="text/javascript" src="calendar.js"></script>
</head>
<body id="main_body" >
	
	<img id="top" src="top.png" alt="">
	<div id="form_container">
	
		<h1><a>PAS Registration Page</a></h1>
 <form id="form_79912" class="appnitro"  method="post" action="mailto:admin@lagronsinc.com">

					<div class="form_description">
			<h2>PAS Registration Page</h2>
			<p>Thank you becoming a PAS Member. Please fill out this information once you are complete. Hit the "Submit" Button.

Thank you,
Premium Advert Solutions Management</p>
		</div>						
			<ul >
			
					<li id="li_1" >
		<label class="description" for="element_1">Name </label>
		<span>
			<input id="element_1_1" name= "element_1_1" class="element text" maxlength="255" size="8" value=""/>
			<label>First</label>
		</span>
		<span>
			<input id="element_1_2" name= "element_1_2" class="element text" maxlength="255" size="14" value=""/>
			<label>Last</label>
		</span> 
		</li>		<li id="li_9" >
		<label class="description" for="element_9">Address </label>
		
		<div>
			<input id="element_9_1" name="element_9_1" class="element text large" value="" type="text">
			<label for="element_9_1">Street Address</label>
		</div>
	
[B]USELESS INFORMATION DELETED HERE>...so that it was 10k characters or less.	[/B]	

		</span>
		<span>
			<input id="element_6_3" name="element_6_3" class="element text " size="2" type="text" maxlength="2" value=""/>
			<label>SS</label>
		</span>
		<span>
			<select class="element select" style="width:4em" id="element_6_4" name="element_6_4">
				<option value="AM" >AM</option>
				<option value="PM" >PM</option>
			</select>
			<label>AM/PM</label>
		</span><p class="guidelines" id="guide_6"><small>Please indicate the Time you are currently completing this form.</small></p> 
		</li>		<li id="li_7" >
		<label class="description" for="element_7">Please Check, that you agree to our terms of service and all policies. </label>
		<span>
			<input id="element_7_1" name="element_7_1" class="element checkbox" type="checkbox" value="1" />
<label class="choice" for="element_7_1">I Agree</label>

		</span><p class="guidelines" id="guide_7"><small>The Terms of Service, and all other policies can be found at lagronsinc.com/pas/documents</small></p> 
		</li>
		<li class="buttons">
				<input type="submit" value="Send">
				
		<input type="hidden" name="form_id" value="79912" />
				</li>
			<input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" />
			</ul>
		</form>	
		<div id="footer">
			Generated by <a href="http://www.phpform.org">pForm</a>
		</div>
	</div>
	<img id="bottom" src="bottom.png" alt="">
	</body>

</html>

There is a index.html file with the same information.

I just wanted the information to be e-mailed to me...and I guess I can't even do that correctly. I have looked at what others have used, tried incorporating it/changing what I have, but it didn't work, so I went back to what I was originally given.

Anyone know how I can fix it? So it sends me an e-mail with the information in the form.

The form can be found at : http://lagronsinc.com/pas/paidsubscriber/form/

Thank you for your time consideration and help if any.
 
Top