Issues with cURL on WordPress
-
Hi all,
I am using WordPress as CMS for one of my school projects. And I am using PHP cURL commands in WordPress. When I try to cURL from a website (https://rkailash.com/ihome/products.php), I am unable to get the price from this particular website. The code that I am using is –
[insert_php]
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, ‘https://rkailash.com/ihome/products.php’);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$contents = curl_exec($ch);
echo $contents;
[/insert_php]Any pointers in helping me fix my issue is appreciated!
TIA
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Issues with cURL on WordPress’ is closed to new replies.