Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. 🚫 No AI-generated (LLM) posts allowed. Share your own thoughts and experience — accounts may be terminated for violations.

Paypal IPN

Status
Not open for further replies.

darrenl

Level 8
Legacy Platinum Member
Joined
Sep 22, 2003
Messages
1,856
Reaction score
4
Does anyone have an example of where I would put the query if the payment was successful with the paypal ipn in php?
 

websitedeveloper

DNF Regular
Legacy Exclusive Member
Joined
Apr 14, 2003
Messages
471
Reaction score
0
// assign PP variables to local variables:
$payment_status = $HTTP_POST_VARS['payment_status'];

// then:
if ($payment_status == "Completed") { } else { }

hope that helps
 

darrenl

Level 8
Legacy Platinum Member
Joined
Sep 22, 2003
Messages
1,856
Reaction score
4
Thanks I actually found a different way but thanks for the help! :D
 
Status
Not open for further replies.
Top Bottom