I am planning to run mongodb query from php platform text area as picture below where I want to write query like
array(\'Chat_time\' => array(\'$gt\' =>
you should write json to your text area. like:
{ "Chat_time": { "$gt" => "xxx", "$lte" => "yyy" } }
in php
// json string to array using json_decode $query = json_decode($_POST['txt_area'], true); $user_code = $coll->find($query);