Srinivas
Results
1
issues of
Srinivas
I am trying to fetch contents from > `https://some.com/suggestions.php?q=kann` ``` include('./Request/library/Requests.php'); Requests::register_autoloader(); $request = Requests::get('https://some.com/suggestions.php?q=kann',array('Accept' => 'application/json')); echo json_encode($request->body); ``` Above code works fine when we run on localHost But...