You appear to be a bot. Output may be restricted
Description
Usage
HttpCurl::httpPost( $url, $userAgent, $parameters );
Parameters
- $url
- ( mixed ) required –
- $userAgent
- ( mixed ) optional –
- $parameters
- ( mixed ) optional –
Returns
void
Source
File name: easy-digital-downloads/includes/gateways/libs/amazon/HttpCurl.php
Lines:
1 to 11 of 11
public function httpPost($url, $userAgent = null, $parameters = null) { $ch = $this->commonCurlParams($url,$userAgent); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $parameters); curl_setopt($ch, CURLOPT_HEADER, true); $response = $this->execute($ch); return $response; }