Multiple Solr filter queries in PHP?

Use AND operator: array('fq'=> 'datecreated:'. $date. ' AND publisher_name:"'.

$publisher. '"').

This might help: code.google.com/p/solr-php-client/wiki/F... This is what the code should look like (please check for syntax errors, my PHP is rusty): array('facet'=>'true','fq'=>array('datecreated:'. $date,'publisher_name:"'. $publisher.'"').

You could also write it like this: array('fq'=>'+datecreated:'. $date. ' +publisher_name:"'.

$publisher. '"') wiki.apache.org/solr/CommonQueryParamete....

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions