createSelect(); // get the dismax component and set a boost query $dismax = $query->getDisMax(); $dismax->setBoostQuery('cat:"graphics card"^2'); // this query is now a dismax query $query->setQuery('memory -printer'); // this executes the query and returns the result $resultset = $client->select($query); // display the total number of documents found by solr echo 'NumFound: '.$resultset->getNumFound(); // show documents using the resultset iterator foreach ($resultset as $document) { echo '
'; // the documents are also iterable, to get all fields foreach($document AS $field => $value) { // this converts multivalue fields to a comma-separated string if(is_array($value)) $value = implode(', ', $value); echo ''; } echo '
' . $field . '' . $value . '
'; } htmlFooter();