I'm using IPN and a script to handle the IPN, everything works fine except for 1 thing. I'm creating my own variable inside the button form called fid.. here is the code: <input type="hidden" name="fid" value="1"> Will this variable be sent back to me in the IPN so that I may retrieve it through the post method. For example with php: $fid = $_POST['fid']; Like i do with everything else $receiver_email = $_POST['receiver_email']; Doesn't seem to be working this way. Any help would be appreciated.
... View more