Paypal IPN Custom field
问题 I know I can send a custom field using IPN with $_POST['custom'] But can I do that with an uploaded file? More specifically an uploaded image? And what if I have two custom fields? I previously used something like this: <input type="hidden" name="custom" value="<?php echo $a.'|'.$b ?>"/> But that was just text! Now I want to upload a file and I also have custom text, then I want to get it. Is this possible and how would that look like? Thanks! 回答1: I don't think it's possible to do it the way