Showing posts with label key. Show all posts
Showing posts with label key. Show all posts

Sunday, February 13, 2011

search key in mongodb

$mat="superman";
 $dd=array('keywords'=>new MongoRegex("/^$mat*/i"));
$cursor = $collection->find($dd);

foreach ($cursor as $obj)
{
$moviename=$obj["moviename"];
}


query display the result where search term is equal to 'superman'