我想學習Kohana的驗證模塊,但登錄方法總是返回false。 控制器: <?php defined('SYSPATH') OR die('No Direct Script Access');
class Controller_Auth extends Controller {
public function action_index() {
if($_POST) {
我試圖運行通過ORM這樣的查詢條件: SELECT * from table where (fname like 'string%' or lname like 'string%')
AND (fname like 'string2%' or lname like 'string2%');
這是我到目前爲止有: $results = ORM::factory('profiles');
fo