Horoscope Chart

“https://kundli1.p.rapidapi.com/”,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => “”,
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => “POST”,
CURLOPT_POSTFIELDS => “name=Amit&birthdate=22-01-1977&birthtime=09%3A30&City=DELHI”,
CURLOPT_HTTPHEADER => [
“X-RapidAPI-Host: kundli1.p.rapidapi.com”,
“X-RapidAPI-Key: f1caee9d86msh6bfe3f54f9ddc83p1ff1b1jsn9355a9aa951a”,
“content-type: application/x-www-form-urlencoded”
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo “cURL Error #:” . $err;
} else {
echo $response;
}

?>

Latest Articles

Categories
PHP Code Snippets Powered By : XYZScripts.com