$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'
$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'