Im using the duckduckgo API with PHP. The API works but if I search for a phrase nothing appears in my browser. If I search for 'Freelance', search results appear. However if I type something more specific nothing appears. Is there something that I can do to allow phrase results to appear? Here is my code
<?php
require_once("DuckDuckGoZeroclickInfo.php");
$obj = new DuckDuckGoZeroclickInfo("", "");
$response = $obj-> zeroClickInfo("Freelance", $callback = null, $no_html = null, $no_redirect = null, $skip_disambig = null);
print "Raw Body: $response->rawBody";
var_dump($response->body);
?>