Jump to content

What could be causing this?


jakebur01

Recommended Posts

if ($step == 'signup4z') {
if ($_POST) {
	$payment = $_POST['payment'];
	$payment_type = $_POST['payment_type'];

	echo "<h2>Payment Options</h2>";

	if ($payment == 'paypal') {
		if ($payment_type == 'subscription') {	
			make_paypal(1);
		}
		elseif ($payment_type == 'monthly') {	
			make_paypal1(1);
		}
	}
	elseif ($payment == 'stormpay') {
		if ($payment_type == 'subscription') {	
			make_stormpay(1);
		}
		elseif ($payment_type == 'monthly') {	
			make_stormpay1(1);
		}
	}
}

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.