I've written on online registration/payment system for a client using PayPal as the processor. As of now, everything works fine but the payment to PayPal is not verified by my app. I want to verify that the payment was made and then write the registrants data to the mysql database. (Currently, I write the data in the script that presents the payment button but the two are not linked together.)
I've been studying the PayPal IPN documentation along with several examples I found on Google but they aren't making much sense. Thus, my question: How can I implement the PayPal IPN system into my php scripts to verify that the payment was made before I write the registrants data to the database? (Examples???)
Thanks in advance,