friends ,
i am working in paypall account as they give complete information but in asp i understand script but in one option i do not getting any help in php ..
process is that we send the varicable and get back information from the sending site as ASP code is this
//*****************************************//
' Post back to PayPal system to validate
str = str & "&cmd=_notify-validate"
set objHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objHttp.open "POST", "https://www.paypal.com/cgi-bin/webscr", false
objHttp.Send str
' Check notification validation
if (objHttp.status <> 200 ) then
' HTTP error handling
'Now we see if the payment is pending, verified, or denied
elseif (objHttp.responseText = "VERIFIED" OR objHttp.responseText = "PENDING") then
'It is verified or pending so we process the payment with the code below
//*****************************************//
i am confuse how can i done in PHP ?
Can some body Help me....