Paypal ipn item_name cannot correctly return my order number -


below html form:

<form name="_xclick" action="https://www.paypal.com/au/cgi-bin/webscr" method="post" id="payment_form_paypal" onsubmit="return show_paypal_message()">     <input type="hidden" name="cmd" value="_xclick" />     <input type="hidden" name="bn" value="webasyst" />     <input type="hidden" name="business" value="sales@mycompany" />     <input type="hidden" name="item_name" value="order #12345" />     <input type="hidden" name="amount" value="1.10" />     <input type="hidden" name="currency_code" value="hkd" />     <input type="hidden" name="tax" value="0" />     <input type="hidden" name="quantity" value="1" />     <input type="hidden" name="no_note" value="1" />     <input type="hidden" name="return" value="test.paypalipn.com" />     <input type="submit" name="pay_now_paypal" title="pay paypal" id="pay_now_paypal" value="pay now"/> </form> 

everything ok until last friday. paypal start return item_name:shopping cart

it make cannot run our program check order whether paid.

please me take , let me know how can resolve problem.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -