如:表名 persons
字段 类型 长度 作用
id int 10 主键
name vachar 20 姓名
age int 4 年龄
addtime int 11 添加时间
classid int 10 班级id
请问,如何写?同时查询两个条件,neme字段和age,
这样写不正确
<?php
class indexController extends grace{
public $tableName = 'persons';
public function index(){
$this->db->where('name =? and age =?' , array($_GET['name']) and array($_GET['age']) )->->fetchAll();
请教~~如何写?