jakebur01 Posted April 8, 2007 Share Posted April 8, 2007 PHP Fatal error: Call to undefined function make_paypal() in C:\Inetpub\UltimateDogginSite.com\couponsite\signup.php on line 264 Link to comment https://forums.phpfreaks.com/topic/46087-what-could-be-causing-this/ Share on other sites More sharing options...
jakebur01 Posted April 8, 2007 Author Share Posted April 8, 2007 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); } } } Link to comment https://forums.phpfreaks.com/topic/46087-what-could-be-causing-this/#findComment-223947 Share on other sites More sharing options...
clown[NOR] Posted April 8, 2007 Share Posted April 8, 2007 what's line 264? Link to comment https://forums.phpfreaks.com/topic/46087-what-could-be-causing-this/#findComment-223948 Share on other sites More sharing options...
jakebur01 Posted April 8, 2007 Author Share Posted April 8, 2007 if ($payment_type == 'subscription') { make_paypal(1); } Link to comment https://forums.phpfreaks.com/topic/46087-what-could-be-causing-this/#findComment-223950 Share on other sites More sharing options...
jakebur01 Posted April 8, 2007 Author Share Posted April 8, 2007 Could someone please give me a clue so I can figure out whats wrong? Link to comment https://forums.phpfreaks.com/topic/46087-what-could-be-causing-this/#findComment-223951 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.