How to search with DataMapper ORM in CodeIgniter -


i have places in database , can of them that:

place::all($options);  

in $options var can write conditions "rating"=> "4" or "status" => "active" , works.

i want know how can that:

place::search($options); 

and inside $options how can write "field" %like% $search or "field2" %like% $search

i using datamapper orm sparks codeigniter, help.


Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -