I am working on a task of localserver 192.168.1.1. I want to fetch the data of a page
192.168.1.1/userRpm/SystemStatisticRpm.htm?Num_per_page=100
I want to display the HTML code returned by this file.
When I am running curl command on terminal like curl -u admin:admin PageURL ( Its returning the code of page)
But when I am using PHP curl then its redirecting me to 192.168.1.1
Can anybody help me ?
My code is :
<?php
$json_url="http://192.168.1.1/userRpm/SystemStatisticRpm.htm?Num_per_page=100";
$username="admin";
$password="admin";
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $json_url);
curl_setopt($ch, CURLOPT_HTTPHEADER,array('Content-Type:application/json'));
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$result=curl_exec($ch);
curl_close ($ch);