whenever I get results using the api and nusoap.php there are always alot of duplicates. I think this is because filter is defaulted to false and it needs to be true to remove duplicates. However If I change my soap parameters
[codes]
$options = array(
'key' => "key",
'q' => "$_GET[search_word]",
'start' => 0,
'maxResults' => 10,
'filter' => true,
'restrict' => '',
'safeSearch' => false,
'lr' => $Res_Country,
'ie' => '',
'oe' => ''
);
[/codes]
If makes not difference and google still returns unfiltered results. I read on [forums.#*$!.com...] (read the last post) that nusoap changes "true" to "1", butt google doesn't recognise this. Any idea how i can change this?