Should I be using this since there are no actual paypal buttons?
Integration With Other IPN Scripts
(1) Open NixieAffiliate/nixie/affiliate.php and FIND near line 5 :
include '../nixie-agent/ipn.php';
include '../nixie-agent/sqlinf.php';
Replace with :
include "/home/krisinva/public_html/NixieAffiliate/nixie-agent/ipn.php";
include "/home/krisinva/public_html/NixieAffiliate/nixie-agent/sqlinf.php";
(2) Open your other (not NixieAffiliate) IPN script in a plain text editor such as notepad and add the following line to the bottom line just before the PHP closing tag : ?>
include "/home/krisinva/public_html/NixieAffiliate/nixie/affiliate.php";
(3) Edit the notify_url field in your Paypal button form code. You must add the following line to the end of your notify URL.
?custom=<?php echo "$_SERVER[REMOTE_ADDR]"; ?>
An example complete notify_url field would appear like this :
<INPUT TYPE="hidden" NAME="notify_url" VALUE="http://www.yourdomain.com/ipnscript.php?custom=<?php echo $_SERVER[REMOTE_ADDR]; ?>">
NOTE : If your IPN script already passes a variable in its IPN URL, then use & instead of ?.