Thread: Like queries
View Single Post
  #1 (permalink)  
Old 03-10-2008, 01:51 AM
Ewok's Avatar
Ewok Ewok is offline
Junior Member
 
Join Date: Mar 2008
Location: Colorado SPrings
Posts: 16
Send a message via MSN to Ewok Send a message via Yahoo to Ewok
Default Like queries

New to ZF.
Figured this out tonight. Thought it might help other people
Doing Mysql "LIKE" queries with Zend_Db_Table select

PHP Code:
$table = new Table();

$select $table->select();

$select->where("field_name like ?",$var."%"); 
__________________
Give all victory and gain to others
Take all defeat and loss upon yourself
Reply With Quote