Hi Darren
callback for confirmation to paypal. # my ($sHttpStatus, $sResponse); $sPostedData .= '&cmd=_notify-validate'; ($status, $sError, $sHttpStatus, $sResponse) = ACTINIC::HTTPS_SendAndReceive('www.paypal.com', 443, '/cgi-bin/webscr', $sPostedData, 'POST'); if ($status != $::SUCCESS || # transmission or $sHttpStatus !~ /200/) # processing failed { ACTINIC::RecordErrors($sError, $sPath); # record the error to error.err return ($::FAILURE); } # # SendAndReceive
This is the line above & below
Amber
callback for confirmation to paypal. # my ($sHttpStatus, $sResponse); $sPostedData .= '&cmd=_notify-validate'; ($status, $sError, $sHttpStatus, $sResponse) = ACTINIC::HTTPS_SendAndReceive('www.paypal.com', 443, '/cgi-bin/webscr', $sPostedData, 'POST'); if ($status != $::SUCCESS || # transmission or $sHttpStatus !~ /200/) # processing failed { ACTINIC::RecordErrors($sError, $sPath); # record the error to error.err return ($::FAILURE); } # # SendAndReceive
This is the line above & below
Amber
Comment