PayPal data delivery problem
Posted: Fri Sep 23, 2005 11:17 am
Hi all,
i have products on a web page that is static , there is a buy button along with product . i m sending item no, and item name in following code to paypal.
when user will click it he will be redirected to paypal account.
up to this level its going perfect.
Now the
Problem:
how can i recieve this item name or item number from paypal after completion of transaction.
because i want to email the sold product name to admin . how can i do that , kindly give me the code or help me.
Thanks in Advance,
regards
Waqas
i have products on a web page that is static , there is a buy button along with product . i m sending item no, and item name in following code to paypal.
Code: Select all
<form name="frm_prod1" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="waqasnisar@gmail.com">
<input type="hidden" name="item_name" value="Bio Neo FS (First Stage)">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="amount" value="40">
<input type="hidden" name="return" value="http://www.bioneo.com/quote_thanks.htm">
<input type="hidden" name="cancel_return" value="http://www.bioneo.com/quote_cancel.htm">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input name="Submit" type="submit" class="blue11" value=" Buy Now ">
</form>when user will click it he will be redirected to paypal account.
up to this level its going perfect.
Now the
Problem:
how can i recieve this item name or item number from paypal after completion of transaction.
because i want to email the sold product name to admin . how can i do that , kindly give me the code or help me.
take care of thati don't have any database involved in this project
Thanks in Advance,
regards
Waqas