how can i easily implement queries in zend framework ?
From stackoverflow
-
You can use the Zend Db Adapter object like so:
$sql = 'SELECT * FROM bugs WHERE bug_id = ?'; $result = $db->fetchAll($sql, 2); -
Check this document:
0 comments:
Post a Comment