Bundschuh - thanks for the reply.
Using the site through a browser I can get the desired results:
Code:
Forum Id=6 properly gives 2 results
search.php?do=process&query=televisions&titleonly=0&childforums=1&forumchoice[]=6&contenttypeid=1
Forum Id=5 properly gives no results
search.php?do=process&query=televisions&titleonly=0&childforums=1&forumchoice[]=5&contenttypeid=1
Relating this to my PHP code using the API has proven difficult. Either there are certain parameters which have dependencies or the parameters that I am passing aren't formatted properly (or a combination of both).
When I use the API if I specify the forumchoice as the URL parameter with the [] in the name, I get an api error: Invalid API Signature.
Here's what I'm passing in the api specific parms:
PHP Code:
$requestparams = array('api_m' => 'search_process', 'query' => 'televisions', 'titleonly' => '0', 'contenttypeid'=>'1', 'childforums' => '1', 'forumchoice' => '6', 'nocache'=>'1');